summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/main.cpp
blob: c153d02d22d04c271a344dfda5708483e1e7d491 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <qapplication.h>

#include "startup.h"

int main( int argc, char **argv )
{
    TQApplication a( argc, argv );
    StartUp s;
    TQObject::connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(tquit()) );
    return a.exec();
}