SimCenterCommon
Common functionality used within different SimCenter projects
mainRV.cpp
Go to the documentation of this file.
1 #include "MainWindowRV.h"
2 #include <QApplication>
3 
4 int main(int argc, char *argv[])
5 {
6  QApplication a(argc, argv);
7  MainWindow w;
8  w.show();
9 
10  return a.exec();
11 }
int main(int argc, char *argv[])
Definition: mainRV.cpp:4