diff options
Diffstat (limited to 'tools/designer/examples/receiver2/main.cpp')
-rw-r--r-- | tools/designer/examples/receiver2/main.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tools/designer/examples/receiver2/main.cpp b/tools/designer/examples/receiver2/main.cpp new file mode 100644 index 000000000..6d263fdcb --- /dev/null +++ b/tools/designer/examples/receiver2/main.cpp @@ -0,0 +1,25 @@ +/**************************************************************************** +** +** 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 "mainform.h" + + +int main( int argc, char *argv[] ) +{ + TQApplication app( argc, argv ); + + MainForm *mainForm = new MainForm; + app.setMainWidget( mainForm ); + mainForm->show(); + + return app.exec(); +} + + |