blob: 37c51c80f5cb0076f73b8bdceaad358b3c12071c (
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, TQ_SIGNAL( lastWindowClosed() ), &a, TQ_SLOT( quit() ) );
return a.exec();
}
|