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