UltraScan III
main.cpp
Go to the documentation of this file.
1 #include <QApplication>
2 
3 #include "us_model_gui.h"
4 #include "us_license_t.h"
5 #include "us_license.h"
6 
8 // the window.
9 
10 int main( int argc, char* argv[] )
11 {
12  QApplication application( argc, argv );
13 
14 #include "main1.inc"
15 
16  US_Model m;
17  US_ModelGui* w = new US_ModelGui( m );
18 
19  w->show();
20  return application.exec();
21 
22 }
23