1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__zigbeemanager/zigbeemanager/main.cpp

14 lines
213 B
C++

#include <QCoreApplication>
#include "zigbeemanager.h"
#include "interface.h"
int main(int argv, char *args[])
{
QCoreApplication app(argv, args);
ZigbeeManager zigbeeManager;
return app.exec();
}