aboutsummaryrefslogtreecommitdiff
path: root/lib/syncdata.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-02 19:59:40 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-08-02 19:59:40 +0900
commitc05ade838f0fce81f2bbe80a3295618a8a26ff52 (patch)
tree763340439a0f4034e9c829d76cb1ffe9766b83c5 /lib/syncdata.h
parent1a1ea8fc87e827fa44c80ff30277e3bee62f4ebb (diff)
downloadlibquotient-c05ade838f0fce81f2bbe80a3295618a8a26ff52.tar.gz
libquotient-c05ade838f0fce81f2bbe80a3295618a8a26ff52.zip
Apply the new brace wrapping to source files
Diffstat (limited to 'lib/syncdata.h')
-rw-r--r--lib/syncdata.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/syncdata.h b/lib/syncdata.h
index 6932878d..ad9902e4 100644
--- a/lib/syncdata.h
+++ b/lib/syncdata.h
@@ -22,8 +22,7 @@
#include "events/stateevent.h"
-namespace QMatrixClient
-{
+namespace QMatrixClient {
/// Room summary, as defined in MSC688
/**
* Every member of this structure is an Omittable; as per the MSC, only
@@ -32,8 +31,7 @@ namespace QMatrixClient
* means that nothing has come from the server; heroes.value().isEmpty()
* means a peculiar case of a room with the only member - the current user.
*/
-struct RoomSummary
-{
+struct RoomSummary {
Omittable<int> joinedMemberCount;
Omittable<int> invitedMemberCount;
Omittable<QStringList> heroes; //< mxids of users to take part in the room
@@ -48,14 +46,12 @@ struct RoomSummary
};
template <>
-struct JsonObjectConverter<RoomSummary>
-{
+struct JsonObjectConverter<RoomSummary> {
static void dumpTo(QJsonObject& jo, const RoomSummary& rs);
static void fillFrom(const QJsonObject& jo, RoomSummary& rs);
};
-class SyncRoomData
-{
+class SyncRoomData {
public:
QString roomId;
JoinState joinState;
@@ -82,8 +78,7 @@ public:
// QVector cannot work with non-copiable objects, std::vector can.
using SyncDataList = std::vector<SyncRoomData>;
-class SyncData
-{
+class SyncData {
public:
SyncData() = default;
explicit SyncData(const QString& cacheFileName);