This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/server/hivecore.h
2013-12-30 20:09:52 +01:00

26 lines
415 B
C++

#ifndef HIVECORE_H
#define HIVECORE_H
#include <QObject>
class JsonRPCServer;
class DeviceManager;
class HiveCore : public QObject
{
Q_OBJECT
public:
static HiveCore* instance();
DeviceManager* deviceManager() const;
private:
explicit HiveCore(QObject *parent = 0);
static HiveCore *s_instance;
JsonRPCServer *m_jsonServer;
DeviceManager *m_deviceManager;
};
#endif // HIVECORE_H