diff options
Diffstat (limited to 'examples/action/main.cpp')
-rw-r--r-- | examples/action/main.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/action/main.cpp b/examples/action/main.cpp new file mode 100644 index 000000000..215211630 --- /dev/null +++ b/examples/action/main.cpp @@ -0,0 +1,20 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include <qapplication.h> +#include "application.h" + +int main( int argc, char ** argv ) { + TQApplication a( argc, argv ); + ApplicationWindow * mw = new ApplicationWindow(); + mw->setCaption( "Document 1" ); + mw->show(); + a.connect( &a, SIGNAL(lastWindowClosed()), &a, SLOT(tquit()) ); + return a.exec(); +} |