source: trunk/examples/regexptester/main.cpp@ 208

Last change on this file since 208 was 162, checked in by dmik, 19 years ago

Imported the regexptester example from the official release 3.3.1 from Trolltech.

  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 268 bytes
Line 
1#include <qapplication.h>
2#include "regexptester.h"
3
4int main(int argc, char **argv)
5{
6 QApplication app(argc, argv);
7 RegexpTester form;
8 form.show();
9 app.connect(&app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()));
10 return app.exec();
11}
Note: See TracBrowser for help on using the repository browser.