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.
Simon Stuerz 42027c8cd0 rc 433 receiver working
lib added logWriter
2013-08-18 13:47:18 +02:00

27 lines
418 B
C++

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