blob: 487712fa62c9d003c82c37cb96e8e9eec9012748 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
import QML
import QtQuick.tooling as Tooling
Tooling.Member {
property string type
property bool isPointer: false
property bool isReadonly: false
property bool isRequired: false
property bool isList: false
property bool isFinal: false
property bool isTypeConstant: false
property bool isPropertyConstant: false
property int revision: 0
property string bindable
property string read
property string write
property string reset
property string notify
property string privateClass
property int index: -1
}
|