aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/wellknown/homeserver.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csapi/definitions/wellknown/homeserver.h')
-rw-r--r--lib/csapi/definitions/wellknown/homeserver.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/csapi/definitions/wellknown/homeserver.h b/lib/csapi/definitions/wellknown/homeserver.h
index f6761c30..8bd3c150 100644
--- a/lib/csapi/definitions/wellknown/homeserver.h
+++ b/lib/csapi/definitions/wellknown/homeserver.h
@@ -6,19 +6,15 @@
#include "converters.h"
-
-namespace QMatrixClient
-{
+namespace QMatrixClient {
// Data structures
/// Used by clients to discover homeserver information.
- struct HomeserverInformation
- {
+ struct HomeserverInformation {
/// The base URL for the homeserver for client-server connections.
QString baseUrl;
};
- template <> struct JsonObjectConverter<HomeserverInformation>
- {
+ template <> struct JsonObjectConverter<HomeserverInformation> {
static void dumpTo(QJsonObject& jo, const HomeserverInformation& pod);
static void fillFrom(const QJsonObject& jo, HomeserverInformation& pod);
};