diff options
Diffstat (limited to 'lib/application-service/definitions/protocol_metadata.h')
-rw-r--r-- | lib/application-service/definitions/protocol_metadata.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/application-service/definitions/protocol_metadata.h b/lib/application-service/definitions/protocol_metadata.h new file mode 100644 index 00000000..3c4bcd99 --- /dev/null +++ b/lib/application-service/definitions/protocol_metadata.h @@ -0,0 +1,27 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + + + +#include "converters.h" + +namespace QMatrixClient +{ + // Data structures + + /// Dictionary of supported third party protocols. + struct ProtocolMetadata + { + }; + + QJsonObject toJson(const ProtocolMetadata& pod); + + template <> struct FromJson<ProtocolMetadata> + { + ProtocolMetadata operator()(const QJsonValue& jv); + }; + +} // namespace QMatrixClient |