diff options
author | Josip Delic <delijati@googlemail.com> | 2018-08-25 21:32:32 +0200 |
---|---|---|
committer | Josip Delic <delijati@googlemail.com> | 2018-08-25 21:32:32 +0200 |
commit | 9357d2bb37029858b397d17e8aa64e57da4202e8 (patch) | |
tree | 165a4f27b9dfbaa1a02dfe34f8df33c20960c340 /lib/events/callcandidatesevent.h | |
parent | 508d1f5e14f0286bb3feaf74c4f143ce2a950234 (diff) | |
download | libquotient-9357d2bb37029858b397d17e8aa64e57da4202e8.tar.gz libquotient-9357d2bb37029858b397d17e8aa64e57da4202e8.zip |
Set state event
Diffstat (limited to 'lib/events/callcandidatesevent.h')
-rw-r--r-- | lib/events/callcandidatesevent.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/events/callcandidatesevent.h b/lib/events/callcandidatesevent.h index faf3fb7d..8e66499d 100644 --- a/lib/events/callcandidatesevent.h +++ b/lib/events/callcandidatesevent.h @@ -33,6 +33,8 @@ namespace QMatrixClient explicit CallCandidatesEvent(const QString& callId, const QJsonArray& candidates); + bool isStateEvent() const override { return true; } + const QJsonArray& candidates() const { return _candidates; } const QString& callId() const { return _callId; } const int version() const { return _version; } |