Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3//! [main_cpp]
4#include <QGuiApplication>
5#include <QQmlApplicationEngine>
6
7int main(int argc, char *argv[])
8{
9 QGuiApplication app(argc, argv);
10
11 QQmlApplicationEngine engine;
12 engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
13
14 return app.exec();
15}
16//! [main_cpp]
int main(int argc, char *argv[])
[ctor_close]