aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/{{base}}.cpp.mustache
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-07-21 22:59:17 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-07-21 22:59:17 +0900
commit22b14860e6b2bda990a05167ae61d8d7f24a2427 (patch)
tree70e0b47a8460af0ee2b8ab9007977178ab196dd6 /lib/csapi/{{base}}.cpp.mustache
parentd3f1f39dafc87ce5b4654ac2a9b21df53dad1a4b (diff)
downloadlibquotient-22b14860e6b2bda990a05167ae61d8d7f24a2427.tar.gz
libquotient-22b14860e6b2bda990a05167ae61d8d7f24a2427.zip
csapi: add definitions/auth_data.* and optimise out trivial files with the latest GTAD
Diffstat (limited to 'lib/csapi/{{base}}.cpp.mustache')
-rw-r--r--lib/csapi/{{base}}.cpp.mustache9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/csapi/{{base}}.cpp.mustache b/lib/csapi/{{base}}.cpp.mustache
index d25997ed..78265951 100644
--- a/lib/csapi/{{base}}.cpp.mustache
+++ b/lib/csapi/{{base}}.cpp.mustache
@@ -10,18 +10,19 @@ using namespace QMatrixClient;
{{#models.model}}{{#in?}}
QJsonObject QMatrixClient::toJson(const {{qualifiedName}}& pod)
{
- QJsonObject _json;{{#vars}}
+ QJsonObject _json{{#propertyMap}} = toJson(pod.{{nameCamelCase}}){{/propertyMap}};{{#vars}}
addParam<{{^required?}}IfNotEmpty{{/required?}}>(_json, QStringLiteral("{{baseName}}"), pod.{{nameCamelCase}});{{/vars}}
return _json;
}
{{/in?}}{{#out?}}
{{qualifiedName}} FromJson<{{qualifiedName}}>::operator()(const QJsonValue& jv)
{
- const auto& _json = jv.toObject();
+ {{^propertyMap}}const auto&{{/propertyMap}}{{#propertyMap}}auto{{/propertyMap}} _json = jv.toObject();
{{qualifiedName}} result;
{{#vars}}result.{{nameCamelCase}} =
- fromJson<{{dataType.name}}>(_json.value("{{baseName}}"_ls));
- {{/vars}}
+ fromJson<{{dataType.name}}>(_json.{{#propertyMap}}take{{/propertyMap}}{{^propertyMap}}value{{/propertyMap}}("{{baseName}}"_ls));
+ {{/vars}}{{#propertyMap}}
+ result.{{nameCamelCase}} = fromJson<{{dataType.name}}>(_json);{{/propertyMap}}
return result;
}
{{/out?}}{{/models.model}}{{#operations}}