[go: up one dir, main page]

Menu

[408fbf]: / ui / main.cpp  Maximize  Restore  History

Download this file

18 lines (15 with data), 380 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#include <qglobal.h>
#include <qapplication.h>
#if QT_VERSION >= 0x040000
#include "sneuiMainGuiForm4.h"
#else
#include "sneuiMainGuiForm.h"
#endif
int main( int argc, char ** argv )
{
QApplication app( argc, argv );
sneuiMainGuiForm sneuiForm;
sneuiForm.show();
app.connect( &app, SIGNAL( lastWindowClosed() ), &app, SLOT( quit() ) );
return app.exec();
}