]> git.defcon.no Git - hm-trp-tool/blob - QT-tool/main.cpp
Adding QT4-based GUI tool. More-or-less useable
[hm-trp-tool] / QT-tool / main.cpp
1 #include <QtGui/QApplication>
2 #include "configurator.h"
3
4 int main(int argc, char *argv[])
5 {
6 QApplication a(argc, argv);
7 Configurator w;
8 w.show();
9
10 return a.exec();
11 }