blob: 7d3f71e5151db0b266987e562f76da8fd332fd7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/******************************************************************************
* SPDX-FileCopyrightText: 2015 Felix Rohrbach <kde@fxrh.de>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "typingevent.h"
using namespace Quotient;
QStringList TypingEvent::users() const
{
return fromJson<QStringList>(contentJson()["user_ids"_ls]);
}
|