blob: 0756d8161260ecf01aabe03b8b26d7464a9f2b70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-FileCopyrightText: 2018 Kitsune Ral <kitsune-ral@users.sf.net>
// SPDX-License-Identifier: LGPL-2.1-or-later
#pragma once
#include "event.h"
namespace Quotient {
class QUOTIENT_API DirectChatEvent : public Event {
public:
QUO_EVENT(DirectChatEvent, "m.direct")
using Event::Event;
QMultiHash<QString, QString> usersToDirectChats() const;
};
} // namespace Quotient
|