blob: cd8c00791a07d493dfcb44882a2ec4761da30111 (
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
30
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "csapi/../application-service/definitions/location.h"
#include "converters.h"
#include <QtCore/QVector>
#include "converters.h"
namespace QMatrixClient
{
// Data structures
/// List of matched third party locations.
struct LocationBatch : QVector<ThirdPartyLocation>
{
};
QJsonObject toJson(const LocationBatch& pod);
template <> struct FromJson<LocationBatch>
{
LocationBatch operator()(const QJsonValue& jv);
};
} // namespace QMatrixClient
|