From 93cf929f29dea490ed60e5300cacdd99886c988e Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Sat, 9 Sep 2023 20:09:50 -0400 Subject: Add the standalone portion of mapman. --- mapman/src/main.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mapman/src/main.cpp (limited to 'mapman/src/main.cpp') 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 + +int main(int argc, char **argv) +{ + QApplication a(argc, argv); + + mapman_main_window mw; + mw.show(); + + a.exec(); + return 0; +} -- cgit v1.2.3