aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/integrating-javascript/scarceresources/exampleTwo.qml
blob: 1aac883c1a48223c90afaefdcdeddd9f17eb3213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//![0]
// exampleTwo.qml
import QtQuick 2.0
import Qt.example 1.0

QtObject {
    property AvatarExample a;
    a: AvatarExample { id: example }
    property var avatar: example.avatar
    // Now `avatar' contains a reference to the scarce resource.
}
//![0]