summaryrefslogtreecommitdiff
path: root/tikzit/main.cpp
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-01-11 17:31:47 +0100
committerAleks Kissinger <aleks0@gmail.com>2017-01-11 17:31:47 +0100
commitdd95fa3ce7a94c1fce9e084071af4031b2bd50e9 (patch)
tree3a3c57c626f00f19021a0eacf27f2f1535becd90 /tikzit/main.cpp
parent1802977b95d29198f27535b1b731d1180c083667 (diff)
boilerplate
Diffstat (limited to 'tikzit/main.cpp')
-rw-r--r--tikzit/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/tikzit/main.cpp b/tikzit/main.cpp
new file mode 100644
index 0000000..b48f94e
--- /dev/null
+++ b/tikzit/main.cpp
@@ -0,0 +1,11 @@
+#include "mainwindow.h"
+#include <QApplication>
+
+int main(int argc, char *argv[])
+{
+ QApplication a(argc, argv);
+ MainWindow w;
+ w.show();
+
+ return a.exec();
+}