#ifndef CORE_H #define CORE_H #include #include "zigbeemanager.h" class Core : public QObject { Q_OBJECT public: explicit Core(QObject *parent = nullptr); private: ZigbeeManager *m_manager; signals: public slots: }; #endif // CORE_H