aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/toys/clocks/main.cpp
blob: 29522381092d23ed583cd9d01efc6ed719c8f5b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QtGui/QApplication>
#include "qmlapplicationviewer.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    QmlApplicationViewer viewer;
    viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape);
    viewer.setMainQmlFile(QLatin1String("qml/qml/clocks.qml"));
    viewer.showExpanded();

    return app.exec();
}