summaryrefslogtreecommitdiffstats
path: root/qt4/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt4/main.cpp')
-rw-r--r--qt4/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt4/main.cpp b/qt4/main.cpp
new file mode 100644
index 000000000..9cb07179e
--- /dev/null
+++ b/qt4/main.cpp
@@ -0,0 +1,11 @@
+#include <QtGui>
+
+#include "qhandbrakewizard.h"
+
+int main(int argc, char **argv) {
+ QApplication app(argc, argv);
+ QHandBrakeWizard *wizard = new QHandBrakeWizard();
+
+ wizard->show();
+ return app.exec();
+}