aboutsummaryrefslogtreecommitdiff
path: root/lib/events/typingevent.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-11-15 21:51:51 +0100
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-11-15 21:51:51 +0100
commit52cab4b11bdd48cd87e04c01b12c698ec4145e6d (patch)
treef8b44dd9c585606b4ac229c396ef914d5950fd47 /lib/events/typingevent.h
parent5b1bfc102fccd4e57893b34bf2b0a14ba6a9f577 (diff)
downloadlibquotient-52cab4b11bdd48cd87e04c01b12c698ec4145e6d.tar.gz
libquotient-52cab4b11bdd48cd87e04c01b12c698ec4145e6d.zip
Cleanup across event classes
In particular: removed unnecessary #includes, deprecated and no more used constructs, replaced stored members with dynamic generation from JSON (TypingEvent and, especially promising for performance, ReceiptEvent)
Diffstat (limited to 'lib/events/typingevent.h')
-rw-r--r--lib/events/typingevent.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/events/typingevent.h b/lib/events/typingevent.h
index 1cf4e69d..97e1f9cc 100644
--- a/lib/events/typingevent.h
+++ b/lib/events/typingevent.h
@@ -25,12 +25,9 @@ class TypingEvent : public Event {
public:
DEFINE_EVENT_TYPEID("m.typing", TypingEvent)
- TypingEvent(const QJsonObject& obj);
+ explicit TypingEvent(const QJsonObject& obj) : Event(typeId(), obj) {}
- const QStringList& users() const { return _users; }
-
-private:
- QStringList _users;
+ QStringList users() const;
};
REGISTER_EVENT_TYPE(TypingEvent)
} // namespace Quotient