blob: f0b131b9ceb4394fb184b72368e0ab17473aa583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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 CallHangupEvent
: public EventTemplate<CallHangupEvent, CallEventBase> {
public:
QUO_EVENT(CallHangupEvent, "m.call.hangup")
using EventTemplate::EventTemplate;
};
//REGISTER_EVENT_TYPE(CallHangupEvent)
} // namespace Quotient
|