summaryrefslogtreecommitdiffstats
path: root/examples/regexptester/main.cpp
blob: 493c955afe8a6faaf4fed96d0cad0fe38bf56084 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <qapplication.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(tquit()));
    return app.exec();
}