diff options
Diffstat (limited to 'examples/toplevel/main.cpp')
-rw-r--r-- | examples/toplevel/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/toplevel/main.cpp b/examples/toplevel/main.cpp new file mode 100644 index 000000000..1987a3f52 --- /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(); +} |