summaryrefslogtreecommitdiff
path: root/qt/RGBController/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt/RGBController/main.cpp')
-rwxr-xr-xqt/RGBController/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt/RGBController/main.cpp b/qt/RGBController/main.cpp
new file mode 100755
index 0000000..4d44399
--- /dev/null
+++ b/qt/RGBController/main.cpp
@@ -0,0 +1,11 @@
+#include "controllerwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ controllerWindow w;
+ w.show();
+
+ return a.exec();
+}