rust-qt-binding-generator/tests/test_object_types.json

50 lines
1.3 KiB
JSON

{
"cppFile": "test_object_types_rust.cpp",
"rust": {
"dir": "rust_object_types",
"interfaceModule": "interface",
"implementationModule": "implementation"
},
"objects": {
"Object": {
"type": "Object",
"properties": {
"boolean": {
"type": "bool",
"write": true
},
"integer": {
"type": "qint32",
"write": true
},
"uinteger": {
"type": "quint32",
"write": true
},
"u64": {
"type": "quint64",
"write": true
},
"string": {
"type": "QString",
"write": true
},
"optionalString": {
"type": "QString",
"write": true,
"optional": true
},
"bytearray": {
"type": "QByteArray",
"write": true
},
"optionalBytearray": {
"type": "QByteArray",
"write": true,
"optional": true
}
}
}
}
}