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