summaryrefslogtreecommitdiffstats
path: root/examples/helpdemo/main.cpp
blob: acf769b6ed230b8be7e8a2682df17d97ccaf05ec (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, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
    return a.exec();
}