QProtobufJsonSerializer Class

The QProtobufJsonSerializer class is an interface that represents basic functions for serialization/deserialization of QProtobufMessage objects to JSON. 更多...

头: #include <QProtobufJsonSerializer>
CMake: find_package(Qt6 REQUIRED COMPONENTS Protobuf)
target_link_libraries(mytarget PRIVATE Qt6::Protobuf)
Since: Qt 6.7
继承: QProtobufBaseSerializer
状态: 技术预览

重实现公共函数

virtual QAbstractProtobufSerializer::DeserializationError deserializationError () const override
virtual QString deserializationErrorString () const override

详细描述

The QProtobufJsonSerializer class registers serializers/deserializers for classes implementing a protobuf message, inheriting QProtobufMessage . These classes are generated automatically, based on a .proto file, using the CMake function qt_add_protobuf or by running qtprotobufgen 直接。

成员函数文档编制

[override virtual] QAbstractProtobufSerializer::DeserializationError QProtobufJsonSerializer:: deserializationError () const

Returns the last deserialization error.

[override virtual] QString QProtobufJsonSerializer:: deserializationErrorString () const

Returns a human-readable string describing the last deserialization error. If there was no error, an empty string is returned.