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-15 19:08:22 +02:00

23 lines
273 B
C++

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