// SPDX-FileCopyrightText: 2017 Marius Gripsgard // SPDX-FileCopyrightText: 2018 Josip Delic // SPDX-License-Identifier: LGPL-2.1-or-later #pragma once #include "roomevent.h" namespace Quotient { class QUOTIENT_API CallHangupEvent : public CallEventBase { public: DEFINE_EVENT_TYPEID("m.call.hangup", CallHangupEvent) explicit CallHangupEvent(const QJsonObject& obj) : CallEventBase(typeId(), obj) {} explicit CallHangupEvent(const QString& callId) : CallEventBase(typeId(), matrixTypeId(), callId, 0) {} }; REGISTER_EVENT_TYPE(CallHangupEvent) } // namespace Quotient ='/nicolas/'>index : libquotient
Unnamed repository; edit this file 'description' to name the repository.Nicolas Peugnet
aboutsummaryrefslogtreecommitdiff
blob: e378422d2fdb4b9ff74baa96d1db4cb4c256f92a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49