15 lines
366 B
C++
15 lines
366 B
C++
|
#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();
|
||
|
}
|