blob: 9813afd8251f25bf7ce3a16cc491129307ecf333 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <qapplication.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();
}
|