diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-08-01 08:09:40 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-09-04 18:42:11 +0200 |
commit | 8e58d28ca0517aeeb43c99bd97ec9ba5ada11c95 (patch) | |
tree | c29da2261c6bd210d95615544989f8a550c758a0 /lib/events/callinviteevent.h | |
parent | fc6321d53f7743f7629841d02c6e28e1a3ab3f83 (diff) | |
download | libquotient-8e58d28ca0517aeeb43c99bd97ec9ba5ada11c95.tar.gz libquotient-8e58d28ca0517aeeb43c99bd97ec9ba5ada11c95.zip |
CallEventBase -> CallEvent; pack up all call events
These are small enough to comfortably reside in a single translation
unit.
Diffstat (limited to 'lib/events/callinviteevent.h')
-rw-r--r-- | lib/events/callinviteevent.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/events/callinviteevent.h b/lib/events/callinviteevent.h deleted file mode 100644 index fc22f7e1..00000000 --- a/lib/events/callinviteevent.h +++ /dev/null @@ -1,26 +0,0 @@ -// SPDX-FileCopyrightText: 2017 Marius Gripsgard <marius@ubports.com> -// SPDX-FileCopyrightText: 2018 Josip Delic <delijati@googlemail.com> -// SPDX-License-Identifier: LGPL-2.1-or-later - -#pragma once - -#include "roomevent.h" - -namespace Quotient { -class QUOTIENT_API CallInviteEvent - : public EventTemplate<CallInviteEvent, CallEventBase> { -public: - QUO_EVENT(CallInviteEvent, "m.call.invite") - - using EventTemplate::EventTemplate; - - explicit CallInviteEvent(const QString& callId, int lifetime, - const QString& sdp); - - QUO_CONTENT_GETTER(int, lifetime) - QString sdp() const - { - return contentPart<QJsonObject>("offer"_ls).value("sdp"_ls).toString(); - } -}; -} // namespace Quotient |