summaryrefslogtreecommitdiffstats
path: root/qt4/main.cpp
diff options
context:
space:
mode:
authorclee <[email protected]>2007-03-29 09:31:13 +0000
committerclee <[email protected]>2007-03-29 09:31:13 +0000
commitceb981ea2c7406fac18dee17382976428a12b374 (patch)
treed8f421576aff6d75e0e4e82e2a3833437af2233b /qt4/main.cpp
parent42b83d67aac7b196b636f8d3b77be5017676fa3b (diff)
Importing the first (very much not-yet-ready-for-primetime) version of the Qt4 GUI for HandBrake into trunk.
Note: This is NOT fit for release yet. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@462 b64f7644-9d1e-0410-96f1-a4d463321fa5
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();
+}