aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/referenceexamples/adding/example.qml
blob: 2e3a40e2acff6405ca9aa5890ba1679bba48064b (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// ![0]
import People 1.0

Person {
    name: "Bob Jones"
    shoeSize: 12
}
// ![0]