aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/animation/easing/main.cpp
blob: 084c83a40b5be04624bef9a89e33fc3b5f217234 (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/easing.qml"));
    viewer.showExpanded();

    return app.exec();
}