blob: 914d56855ca8079478c6c3d16f332e98ad948bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <ntqapplication.h>
#include "startup.h"
int main( int argc, char **argv )
{
TQApplication a( argc, argv );
StartUp s;
TQObject::connect( &a, TQ_SIGNAL(lastWindowClosed()), &a, TQ_SLOT(quit()) );
return a.exec();
}
|