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

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