author | John Kern <johnk@symbian.org> |
Mon, 25 Oct 2010 10:46:37 -0700 | |
changeset 5 | 3d8bce9e1a9f |
parent 3 | 2e16639599b7 |
permissions | -rwxr-xr-x |
#include <QtGui/QApplication> #include "qmlapplicationviewer.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); QmlApplicationViewer viewer; viewer.setOrientation(QmlApplicationViewer::Auto); viewer.setMainQmlFile(QLatin1String("qml/cards/main.qml")); //viewer.setSource(QUrl("qrc:/qml/cards/flipable.qml")); viewer.show(); return app.exec(); }