aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/qtbinding/properties-qml/MyItem.qml
blob: ff626d383766051040c345bdf2c03862bb071b1e (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//![0]
// MyItem.qml
import QtQuick

Item {
    property int someNumber: 100
}
//![0]