summaryrefslogtreecommitdiffstats
path: root/examples/toplevel/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/toplevel/main.cpp')
-rw-r--r--examples/toplevel/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/toplevel/main.cpp b/examples/toplevel/main.cpp
new file mode 100644
index 00000000..1987a3f5
--- /dev/null
+++ b/examples/toplevel/main.cpp
@@ -0,0 +1,9 @@
+#include <qapplication.h>
+#include "options.h"
+
+int main( int argc, char ** argv )
+{
+ TQApplication a( argc, argv );
+ OptionsDialog dlg;
+ return dlg.exec();
+}