blob: 76072217c78dd3e776a921cb33888864b131a615 (
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, SIGNAL(lastWindowClosed()), &a, SLOT(quit()) );
    return a.exec();
}
  |