summaryrefslogtreecommitdiffstats
path: root/examples/distributor/main.cpp
blob: a8618abeeb21a4434453330046a217c13b1a3798 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <tqapplication.h>
#include "distributor.h"

int main( int argc, char ** argv )
{
    TQApplication a( argc, argv );
    Distributor w;
    w.show();
    a.connect( &a, TQ_SIGNAL( lastWindowClosed() ), &a, TQ_SLOT( quit() ) );
    return a.exec();
}