SimCenterCommon
Common functionality used within different SimCenter projects
mainInputSheetBM.cpp
Go to the documentation of this file.
1 // Written: fmckenna
2 
3 // Purpose: the typical Qt main for running a QMainWindow
4 
6 #include <QApplication>
7 
8 int main(int argc, char *argv[])
9 {
10  QApplication a(argc, argv);
11  MainWindow w;
12  w.show();
13 
14  return a.exec();
15 }
int main(int argc, char *argv[])