source: liacs/pm/qt-nim/main.cc@ 104

Last change on this file since 104 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

  • Property svn:executable set to *
File size: 214 bytes
RevLine 
[2]1#include <qapplication.h>
2#include "mainForm.h"
3
4int main( int argc, char *argv[] )
5{
6 QApplication app( argc, argv );
7 MainForm *mf = new MainForm( );
8 app.setMainWidget( mf );
9 mf->show();
10
11 return app.exec();
12}
Note: See TracBrowser for help on using the repository browser.