summaryrefslogtreecommitdiffstats
path: root/examples/distributor/main.cpp
blob: 2a8a30cbe16ceabc8c659fa5f8548f6e6efccd6f (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( tquit() ) );
    return a.exec();
}