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

#include "startup.h"

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