summaryrefslogtreecommitdiffstats
path: root/QtDemo/main.cpp
blob: e3572ea33f67e9d1a893f754bd8eaeafe09bced5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>

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

    QQmlApplicationEngine engine;
    engine.load(QUrl(QStringLiteral("qrc:///qml/QtDemo/main.qml")));

    return app.exec();
}