aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/qtbinding/properties-qml/MyItem.qml
blob: f0e6fe77f5f211a151f83789c543f62a992adfb3 (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 2.0

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