aboutsummaryrefslogtreecommitdiff
path: root/lib/events/typingevent.h
blob: 8ca4f8e4b2b54cf4c630ef5fd630f25b66d4e0be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/******************************************************************************
 * SPDX-FileCopyrightText: 2015 Felix Rohrbach <kde@fxrh.de>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#pragma once

#include "event.h"

namespace Quotient {
class TypingEvent : public Event {
public:
    DEFINE_EVENT_TYPEID("m.typing", TypingEvent)

    explicit TypingEvent(const QJsonObject& obj) : Event(typeId(), obj) {}

    QStringList users() const;
};
REGISTER_EVENT_TYPE(TypingEvent)
} // namespace Quotient