aboutsummaryrefslogtreecommitdiff
path: root/src/qt/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qt/main.cpp')
-rw-r--r--src/qt/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/qt/main.cpp b/src/qt/main.cpp
new file mode 100644
index 0000000..9cf530b
--- /dev/null
+++ b/src/qt/main.cpp
@@ -0,0 +1,12 @@
+#include "mainwindow.hpp"
+
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+
+ return a.exec();
+}