summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/receiver1/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/examples/receiver1/main.cpp')
-rw-r--r--tools/designer/examples/receiver1/main.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/designer/examples/receiver1/main.cpp b/tools/designer/examples/receiver1/main.cpp
new file mode 100644
index 00000000..c5145d06
--- /dev/null
+++ b/tools/designer/examples/receiver1/main.cpp
@@ -0,0 +1,24 @@
+/****************************************************************************
+**
+** 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();
+}
+
+