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

int main(int argc, char **argv)
{
    TQApplication app(argc, argv);
    RegexpTester form;
    form.show();
    app.connect(&app, TQ_SIGNAL(lastWindowClosed()), &app, TQ_SLOT(quit()));
    return app.exec();
}