source: liacs/pm/qt-nim2/main.cpp@ 4

Last change on this file since 4 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: 211 bytes
Line 
1#include <qapplication.h>
2#include "nimform.h"
3
4int main( int argc, char *argv[] )
5{
6 QApplication app( argc, argv );
7 NimForm *nf = new NimForm( );
8 app.setMainWidget( nf );
9 nf->show();
10
11 return app.exec();
12}
Note: See TracBrowser for help on using the repository browser.