From dda8474928bd7276e1fad8fb7a601e7c83ff2bc2 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:17:53 -0500 Subject: Added TQt4 HEAD --- .../qt4/tools/designer/examples/receiver1/main.cpp | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tqtinterface/qt4/tools/designer/examples/receiver1/main.cpp (limited to 'tqtinterface/qt4/tools/designer/examples/receiver1/main.cpp') diff --git a/tqtinterface/qt4/tools/designer/examples/receiver1/main.cpp b/tqtinterface/qt4/tools/designer/examples/receiver1/main.cpp new file mode 100644 index 0000000..794c4ab --- /dev/null +++ b/tqtinterface/qt4/tools/designer/examples/receiver1/main.cpp @@ -0,0 +1,24 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include +#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(); +} + + -- cgit v1.2.1