summaryrefslogtreecommitdiff
path: root/schulung_tools/leds/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'schulung_tools/leds/main.cpp')
-rw-r--r--schulung_tools/leds/main.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/schulung_tools/leds/main.cpp b/schulung_tools/leds/main.cpp
new file mode 100644
index 0000000..ec5e92b
--- /dev/null
+++ b/schulung_tools/leds/main.cpp
@@ -0,0 +1,14 @@
+#include "leds.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ Leds w;
+ if (w.init())
+ return -1;
+
+ w.show();
+
+ return a.exec();
+}