aboutsummaryrefslogtreecommitdiff
path: root/lib/events/roomtombstoneevent.h
blob: c85b4dfd2074571d36786dd1a3e962bd19abdbd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 QUOTIENT_API RoomTombstoneEvent : public StateEvent {
public:
    QUO_EVENT(RoomTombstoneEvent, "m.room.tombstone")

    using StateEvent::StateEvent;

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