]> git.defcon.no Git - rctxduino/blobdiff - tools/jstt/main.cpp
Got the very basics working, no more segfaulting
[rctxduino] / tools / jstt / main.cpp
diff --git a/tools/jstt/main.cpp b/tools/jstt/main.cpp
new file mode 100644 (file)
index 0000000..61b9494
--- /dev/null
@@ -0,0 +1,10 @@
+#include <QtGui/QApplication>
+#include "jstt.h"
+
+int main(int argc, char *argv[])
+{
+    QApplication a(argc, argv);
+    jstt w;
+    w.show();
+    return a.exec();
+}