aboutsummaryrefslogtreecommitdiff
path: root/lib/events/roomtombstoneevent.h
blob: 30e5373825e7667079e2d09593400d85c6a73047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-FileCopyrightText: 2019 Kitsune Ral <Kitsune-Ral@users.sf.net>
// SPDX-License-Identifier: LGPL-2.1-or-later

#pragma once

#include "stateevent.h"

namespace Quotient {
class RoomTombstoneEvent : public StateEventBase {
public:
    DEFINE_EVENT_TYPEID("m.room.tombstone", RoomTombstoneEvent)

    explicit RoomTombstoneEvent() : StateEventBase(typeId(), matrixTypeId()) {}
    explicit RoomTombstoneEvent(const QJsonObject& obj)
        : StateEventBase(typeId(), obj)
    {}

    QString serverMessage() const;
    QString successorRoomId() const;
};
REGISTER_EVENT_TYPE(RoomTombstoneEvent)
} // namespace Quotient