aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/xml/xmlhttprequest-example/main.cpp
blob: 037f551217c19ab5204eebaf6be6806ca25c5557 (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/xmlhttprequest-example.qml"));
    viewer.showExpanded();

    return app.exec();
}