tychoGUI  1.0
 All Data Structures Namespaces Files Functions Variables
main.cpp
Go to the documentation of this file.
1 #include <QApplication>
2 #include "mainwindow.h"
3 
4 
14 int main(int argc, char *argv[])
15 {
16  QApplication a(argc, argv);
17  MainWindow w;
18 
19  w.show();
20 
21  return a.exec();
22 }
23