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.
2013-08-16 03:54:58 +02:00

24 lines
300 B
C++

#ifndef HIVECORE_H
#define HIVECORE_H
#include <QObject>
#include "server.h"
#include "devicemanager.h"
class HiveCore : public QObject
{
Q_OBJECT
public:
explicit HiveCore(QObject *parent = 0);
private:
Server *m_server;
signals:
public slots:
};
#endif // HIVECORE_H