tychoBCG3D  0.2
 All Data Structures Namespaces Files Functions Variables
main.cpp
Go to the documentation of this file.
1 #include "mainwindow.h"
2 #include <QApplication>
3 
4 int main(int argc, char *argv[])
5 {
6  QApplication a(argc, argv);
7  MainWindow w;
8  w.setWindowModality(Qt::ApplicationModal);
9  //w.setWindowModality(Qt::WindowModality);
10  w.show();
11  return a.exec();
12 }