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.
2014-03-31 20:33:30 +02:00

22 lines
431 B
C++

#include <QCoreApplication>
#include <guhcore.h>
#include <QtPlugin>
Q_IMPORT_PLUGIN(DevicePluginElro)
Q_IMPORT_PLUGIN(DevicePluginIntertechno)
Q_IMPORT_PLUGIN(DevicePluginMeisterAnker)
Q_IMPORT_PLUGIN(DevicePluginWifiDetector)
Q_IMPORT_PLUGIN(DevicePluginConrad)
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
a.setOrganizationName("guhyourhome");
GuhCore::instance();
return a.exec();
}