blob: 743ae88eaff7d990a0f269a06be6ec84959c9792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <ntqapplication.h>
#include "distributor.h"
int main( int argc, char ** argv )
{
TQApplication a( argc, argv );
Distributor w;
w.show();
a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
return a.exec();
}
|