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/main.cpp
2023-05-13 21:04:08 +02:00

22 lines
418 B
C++

#include "zigbeemanager.h"
#include "zigbeeManagerinterface.h"
using namespace std;
//int debugLevel = DEBUG | INFO | WARNING | ERROR;
QMap <QString, Plugins> plugins;
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QCoreApplication::setOrganizationName("zigbeemanager");
QCoreApplication::setApplicationName("zigbeemanager");
ZigbeeManager zigbeeManager;
return a.exec();
}