summary refs log tree commit diff
path: root/include/events/JoinRulesEventContent.h
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-08-20 13:47:22 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-08-20 13:47:22 +0300
commit2644e4accaf7487ad51b205040163e42b76de3a4 (patch)
tree523db09ee380e05838bfb2a5eee60ca88aad6e52 /include/events/JoinRulesEventContent.h
parentAdd missing destructors (diff)
downloadnheko-2644e4accaf7487ad51b205040163e42b76de3a4.tar.xz
Small style change
Diffstat (limited to 'include/events/JoinRulesEventContent.h')
-rw-r--r--include/events/JoinRulesEventContent.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/include/events/JoinRulesEventContent.h b/include/events/JoinRulesEventContent.h

index 9b07e9a6..702bba98 100644 --- a/include/events/JoinRulesEventContent.h +++ b/include/events/JoinRulesEventContent.h
@@ -44,7 +44,9 @@ enum class JoinRule { * Describes how users are allowed to join the room. */ -class JoinRulesEventContent : public Deserializable, public Serializable +class JoinRulesEventContent + : public Deserializable + , public Serializable { public: void deserialize(const QJsonValue &data) override; @@ -56,9 +58,10 @@ private: JoinRule join_rule_; }; -inline JoinRule JoinRulesEventContent::joinRule() const +inline JoinRule +JoinRulesEventContent::joinRule() const { return join_rule_; } -} // namespace events -} // namespace matrix +} // namespace events +} // namespace matrix