blob: f22752b4e0b187d2d6a13dfeb85431de59a809e9 (
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
|
// SPDX-FileCopyrightText: 2019 Kitsune Ral <Kitsune-Ral@users.sf.net>
// SPDX-License-Identifier: LGPL-2.1-or-later
#pragma once
#include "stateevent.h"
#include "quotient_common.h"
namespace Quotient {
class QUOTIENT_API RoomCreateEvent : public StateEventBase {
public:
QUO_EVENT(RoomCreateEvent, "m.room.create")
explicit RoomCreateEvent(const QJsonObject& obj)
: StateEventBase(typeId(), obj)
{}
struct Predecessor {
QString roomId;
QString eventId;
};
bool isFederated() const;
QString version() const;
Predecessor predecessor() const;
bool isUpgrade() const;
RoomType roomType() const;
};
} // namespace Quotient
|