12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import QML
- QtObject {
- default property list<Member> members
- property string file
- required property string name
- property string prototype
- property var exports: []
- property var exportMetaObjectRevisions: []
- property var interfaces: []
- property string attachedType
- property string valueType
- property string extension
- property bool isSingleton: false
- property bool isCreatable: name.length > 0
- property bool isComposite: false
- property bool hasCustomParser: false
- property string accessSemantics: "reference"
- property string defaultProperty
- property string parentProperty
- }
|