summaryrefslogtreecommitdiffstats
path: root/examples/wizard/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wizard/main.cpp')
-rw-r--r--examples/wizard/main.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/wizard/main.cpp b/examples/wizard/main.cpp
new file mode 100644
index 0000000..b54dca4
--- /dev/null
+++ b/examples/wizard/main.cpp
@@ -0,0 +1,20 @@
+/****************************************************************************
+**
+** 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 "wizard.h"
+#include <qapplication.h>
+
+int main(int argc,char **argv)
+{
+ QApplication a(argc,argv);
+
+ Wizard wizard;
+ wizard.setCaption("Qt Example - Wizard");
+ return wizard.exec();
+}