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/callinviteevent.h | |
parent | 508d1f5e14f0286bb3feaf74c4f143ce2a950234 (diff) | |
download | libquotient-9357d2bb37029858b397d17e8aa64e57da4202e8.tar.gz libquotient-9357d2bb37029858b397d17e8aa64e57da4202e8.zip |
Set state event
Diffstat (limited to 'lib/events/callinviteevent.h')
-rw-r--r-- | lib/events/callinviteevent.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/events/callinviteevent.h b/lib/events/callinviteevent.h index 553a8024..029b2e3d 100644 --- a/lib/events/callinviteevent.h +++ b/lib/events/callinviteevent.h @@ -32,6 +32,8 @@ namespace QMatrixClient explicit CallInviteEvent(const QString& callId, const int lifetime, const QString& sdp); + bool isStateEvent() const override { return true; } + const int lifetime() const { return _lifetime; } const QString& sdp() const { return _sdp; } const QString& callId() const { return _callId; } |