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