diff options
Diffstat (limited to 'lib/application-service/definitions/user_batch.cpp')
-rw-r--r-- | lib/application-service/definitions/user_batch.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/application-service/definitions/user_batch.cpp b/lib/application-service/definitions/user_batch.cpp new file mode 100644 index 00000000..bbdf6835 --- /dev/null +++ b/lib/application-service/definitions/user_batch.cpp @@ -0,0 +1,22 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#include "user_batch.h" + +using namespace QMatrixClient; + +QJsonObject QMatrixClient::toJson(const UserBatch& pod) +{ + QJsonObject _json; + return _json; +} + +UserBatch FromJson<UserBatch>::operator()(const QJsonValue& jv) +{ + const auto& _json = jv.toObject(); + UserBatch result; + + return result; +} + |