Last change
on this file since 224 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:
252 bytes
|
Line | |
---|
1 | #include <qapplication.h>
|
---|
2 | #include "form1.h"
|
---|
3 |
|
---|
4 | int main( int argc, char ** argv )
|
---|
5 | {
|
---|
6 | QApplication a( argc, argv );
|
---|
7 | Form1 *w = new Form1;
|
---|
8 | w->show();
|
---|
9 | a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
|
---|
10 | return a.exec();
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.