diff options
Diffstat (limited to 'tcutils/main.cpp')
-rw-r--r-- | tcutils/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tcutils/main.cpp b/tcutils/main.cpp new file mode 100644 index 00000000..d951345f --- /dev/null +++ b/tcutils/main.cpp @@ -0,0 +1,11 @@ +#include <QtGui/QApplication> +#include "mainwindow.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} |