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.
Simon Stuerz 3bf97a7e0d RF plugins added and made more stable
played with the client gui
2013-09-06 09:54:14 +02:00

13 lines
203 B
C++

#include <QtGui/QGuiApplication>
#include "hiveclientcore.h"
#include "usb.h"
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
HiveClientCore core;
return app.exec();
}