aboutsummaryrefslogtreecommitdiff
path: root/c++-libbu++/src/gatscon/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++-libbu++/src/gatscon/main.cpp')
-rw-r--r--c++-libbu++/src/gatscon/main.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/c++-libbu++/src/gatscon/main.cpp b/c++-libbu++/src/gatscon/main.cpp
new file mode 100644
index 0000000..b9b2327
--- /dev/null
+++ b/c++-libbu++/src/gatscon/main.cpp
@@ -0,0 +1,13 @@
1#include "mainwnd.h"
2#include <QApplication>
3
4int main( int argc, char *argv[] )
5{
6 QApplication app( argc, argv );
7
8 MainWnd wnd;
9 wnd.show();
10
11 return app.exec();
12}
13