aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmlmodels/doc/snippets/delegatemodel/delegatemodel_rootindex/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmlmodels/doc/snippets/delegatemodel/delegatemodel_rootindex/main.cpp')
-rw-r--r--src/qmlmodels/doc/snippets/delegatemodel/delegatemodel_rootindex/main.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/qmlmodels/doc/snippets/delegatemodel/delegatemodel_rootindex/main.cpp b/src/qmlmodels/doc/snippets/delegatemodel/delegatemodel_rootindex/main.cpp
new file mode 100644
index 0000000000..710d86eadd
--- /dev/null
+++ b/src/qmlmodels/doc/snippets/delegatemodel/delegatemodel_rootindex/main.cpp
@@ -0,0 +1,25 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+#include <QQuickView>
+#include <QQmlContext>
+
+#include <QApplication>
+#include <QFileSystemModel>
+
+//![0]
+int main(int argc, char ** argv)
+{
+ QApplication app(argc, argv);
+
+ QQuickView view;
+
+ QFileSystemModel model;
+ view.rootContext()->setContextProperty("fileSystemModel", &model);
+
+ view.setSource(QUrl::fromLocalFile("view.qml"));
+ view.show();
+
+ return app.exec();
+}
+//![0]
+