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-01-26 17:12:15 +01:00

21 lines
398 B
C++

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