24 lines
297 B
C++
24 lines
297 B
C++
#ifndef CORE_H
|
|
#define CORE_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "zigbeenetworkmanager.h"
|
|
|
|
class Core : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Core(const int &channel, QObject *parent = nullptr);
|
|
|
|
private:
|
|
ZigbeeNetworkManager *m_manager;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // CORE_H
|