summaryrefslogtreecommitdiff
path: root/src/gui/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/main.cc')
-rw-r--r--src/gui/main.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gui/main.cc b/src/gui/main.cc
new file mode 100644
index 0000000..e592da9
--- /dev/null
+++ b/src/gui/main.cc
@@ -0,0 +1,11 @@
+#include "GUI.h"
+
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ GUI w;
+ w.show();
+ return a.exec();
+}