]> git.defcon.no Git - rctxduino/blob - tools/jstt/main.cpp
Got the very basics working, no more segfaulting
[rctxduino] / tools / jstt / main.cpp
1 #include <QtGui/QApplication>
2 #include "jstt.h"
3
4 int main(int argc, char *argv[])
5 {
6 QApplication a(argc, argv);
7 jstt w;
8 w.show();
9 return a.exec();
10 }