24 lines
451 B
C++
24 lines
451 B
C++
#ifndef ZIGBEEMANAGERINTERFACE_H
|
|
#define ZIGBEEMANAGERINTERFACE_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QtPlugin>
|
|
|
|
class ZigbeeManagerInterface
|
|
{
|
|
public:
|
|
virtual ~ZigbeeManagerInterface() = default;
|
|
virtual bool initPlugin();
|
|
};
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
#define ZigbeeManagerInterface_iid "org.zigbeemanager"
|
|
|
|
Q_DECLARE_INTERFACE(ZigbeeManagerInterface, ZigbeeManagerInterface_iid)
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
#endif // ZIGBEEMANAGERINTERFACE_H
|