aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/public_rooms_response.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-06-24 07:38:50 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-06-24 07:38:50 +0900
commit9e96bc9b8dec6613e3e2f2fd564e9f6bee9bbce4 (patch)
tree2a9492b74440f3cfd1d1a353dd9f678d7a6b09ed /lib/csapi/definitions/public_rooms_response.h
parent8d96901ff455e4072dd4b050cf9c17a5780bfacb (diff)
downloadlibquotient-9e96bc9b8dec6613e3e2f2fd564e9f6bee9bbce4.tar.gz
libquotient-9e96bc9b8dec6613e3e2f2fd564e9f6bee9bbce4.zip
csapi/*/**: clang-format contents of csapi subdirs as well
Diffstat (limited to 'lib/csapi/definitions/public_rooms_response.h')
-rw-r--r--lib/csapi/definitions/public_rooms_response.h35
1 files changed, 17 insertions, 18 deletions
diff --git a/lib/csapi/definitions/public_rooms_response.h b/lib/csapi/definitions/public_rooms_response.h
index d282a592..e86e306f 100644
--- a/lib/csapi/definitions/public_rooms_response.h
+++ b/lib/csapi/definitions/public_rooms_response.h
@@ -4,11 +4,8 @@
#pragma once
-
-
#include "converters.h"
-#include "converters.h"
#include <QtCore/QVector>
namespace QMatrixClient
@@ -16,7 +13,6 @@ namespace QMatrixClient
// Data structures
-
struct PublicRoomsChunk
{
/// Aliases of the room. May be empty.
@@ -33,39 +29,42 @@ struct PublicRoomsChunk
QString topic;
/// Whether the room may be viewed by guest users without joining.
bool worldReadable;
- /// Whether guest users may join the room and participate in it.If they can, they will be subject to ordinary power levelrules like any other user.
+ /// Whether guest users may join the room and participate in it.If they can,
+ /// they will be subject to ordinary power levelrules like any other user.
bool guestCanJoin;
/// The URL for the room's avatar, if one is set.
QString avatarUrl;
-
-
};
-template <> struct JsonObjectConverter<PublicRoomsChunk>
+template <>
+struct JsonObjectConverter<PublicRoomsChunk>
{
static void dumpTo(QJsonObject& jo, const PublicRoomsChunk& pod);
- static void fillFrom(const QJsonObject& jo, PublicRoomsChunk& pod);};
+ static void fillFrom(const QJsonObject& jo, PublicRoomsChunk& pod);
+};
/// A list of the rooms on the server.
struct PublicRoomsResponse
{
/// A paginated chunk of public rooms.
QVector<PublicRoomsChunk> chunk;
- /// A pagination token for the response. The absence of this tokenmeans there are no more results to fetch and the client shouldstop paginating.
+ /// A pagination token for the response. The absence of this tokenmeans
+ /// there are no more results to fetch and the client shouldstop paginating.
QString nextBatch;
- /// A pagination token that allows fetching previous results. Theabsence of this token means there are no results before thisbatch, i.e. this is the first batch.
+ /// A pagination token that allows fetching previous results. Theabsence of
+ /// this token means there are no results before thisbatch, i.e. this is the
+ /// first batch.
QString prevBatch;
- /// An estimate on the total number of public rooms, if theserver has an estimate.
+ /// An estimate on the total number of public rooms, if theserver has an
+ /// estimate.
Omittable<int> totalRoomCountEstimate;
-
-
};
-template <> struct JsonObjectConverter<PublicRoomsResponse>
+template <>
+struct JsonObjectConverter<PublicRoomsResponse>
{
static void dumpTo(QJsonObject& jo, const PublicRoomsResponse& pod);
- static void fillFrom(const QJsonObject& jo, PublicRoomsResponse& pod);};
-
-
+ static void fillFrom(const QJsonObject& jo, PublicRoomsResponse& pod);
+};
} // namespace QMatrixClient