source: trunk/examples/extension/main.cpp

Last change on this file was 160, checked in by dmik, 19 years ago

Imported table and iconview modules and a bunch of dependent examples from the official release 3.3.1 from Trolltech.

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