tychoBCGEN  0.5
 All Data Structures Namespaces Files Functions Variables
main.cpp
Go to the documentation of this file.
1 
16 #include "mainwindow.h"
17 #include <QApplication>
18 #include <QFileDialog>
19 
23 int main(int argc, char *argv[])
24 {
25  QApplication a(argc, argv);
26  MainWindow w;
27  w.show();
28 
29  return a.exec();
30 }