blob: 91e66f0e1aaef67dce7b4e621a8a00aa3da87e24 (
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
31
32
33
34
35
36
37
38
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QPROTOBUFJSONSERIALIZER_H
#define QPROTOBUFJSONSERIALIZER_H
#include <QtProtobuf/qtprotobufglobal.h>
#include <QtProtobuf/qabstractprotobufserializer.h>
#include <memory>
QT_BEGIN_NAMESPACE
class QProtobufJsonSerializerPrivate;
class Q_PROTOBUF_EXPORT QProtobufJsonSerializer final : public QAbstractProtobufSerializer
{
Q_DISABLE_COPY_MOVE(QProtobufJsonSerializer)
public:
QProtobufJsonSerializer();
~QProtobufJsonSerializer() override;
Error lastError() const override;
QString lastErrorString() const override;
private:
QByteArray serializeMessage(const QProtobufMessage *message) const override;
bool deserializeMessage(QProtobufMessage *message, QByteArrayView data) const override;
private:
std::unique_ptr<QProtobufJsonSerializerPrivate> d_ptr;
};
QT_END_NAMESPACE
#endif // QPROTOBUFJSONSERIALIZER_H
|