Download this file
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(); }