summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/qtquick/qtquickcontrols_1_1/main.cpp
blob: 18fd2076cf2bf986355305694b9501fc28a1ae22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "qtquick2controlsapplicationviewer.h"

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

    QtQuick2ControlsApplicationViewer viewer;
    viewer.setMainQmlFile(QStringLiteral("qml/app/main.qml")); // MAINQML
    viewer.show();

    return app.exec();
}