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.
2017-10-20 15:08:00 +02:00

24 lines
277 B
C++

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