]> git.defcon.no Git - joysticktest/blob - main.cpp
Working test with Qt GUI. Threaded, with no thread safety.
[joysticktest] / main.cpp
1 #include <QtGui/QApplication>
2 #include "joystickview.h"
3
4 int main(int argc, char *argv[])
5 {
6 QApplication a(argc, argv);
7 JoystickView w;
8 w.show();
9 return a.exec();
10 }