aboutsummaryrefslogtreecommitdiff
path: root/lib/events/callanswerevent.cpp
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-08-01 08:09:40 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-09-04 18:42:11 +0200
commit8e58d28ca0517aeeb43c99bd97ec9ba5ada11c95 (patch)
treec29da2261c6bd210d95615544989f8a550c758a0 /lib/events/callanswerevent.cpp
parentfc6321d53f7743f7629841d02c6e28e1a3ab3f83 (diff)
downloadlibquotient-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/callanswerevent.cpp')
-rw-r--r--lib/events/callanswerevent.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/events/callanswerevent.cpp b/lib/events/callanswerevent.cpp
deleted file mode 100644
index 89dcd7fd..00000000
--- a/lib/events/callanswerevent.cpp
+++ /dev/null
@@ -1,34 +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
-
-#include "callanswerevent.h"
-
-/*
-m.call.answer
-{
- "age": 242352,
- "content": {
- "answer": {
- "sdp": "v=0\r\no=- 6584580628695956864 2 IN IP4 127.0.0.1[...]",
- "type": "answer"
- },
- "call_id": "12345",
- "version": 0
- },
- "event_id": "$WLGTSEFSEF:localhost",
- "origin_server_ts": 1431961217939,
- "room_id": "!Cuyf34gef24t:localhost",
- "sender": "@example:localhost",
- "type": "m.call.answer"
-}
-*/
-
-using namespace Quotient;
-
-CallAnswerEvent::CallAnswerEvent(const QString& callId, const QString& sdp)
- : EventTemplate(callId, { { QStringLiteral("answer"),
- QJsonObject { { QStringLiteral("type"),
- QStringLiteral("answer") },
- { QStringLiteral("sdp"), sdp } } } })
-{}