summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/receiver2/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/examples/receiver2/main.cpp')
-rw-r--r--tools/designer/examples/receiver2/main.cpp25
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 0000000..8c76ef2
--- /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 Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include <qapplication.h>
+#include "mainform.h"
+
+
+int main( int argc, char *argv[] )
+{
+ QApplication app( argc, argv );
+
+ MainForm *mainForm = new MainForm;
+ app.setMainWidget( mainForm );
+ mainForm->show();
+
+ return app.exec();
+}
+
+