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 0000000..f50b9b1 --- /dev/null +++ b/examples/toplevel/main.cpp @@ -0,0 +1,9 @@ +#include <qapplication.h> +#include "options.h" + +int main( int argc, char ** argv ) +{ + QApplication a( argc, argv ); + OptionsDialog dlg; + return dlg.exec(); +} |