File indexing completed on 2025-01-31 10:12:04
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef GOOGLE_PROTOBUF_UTIL_JSON_UTIL_H__
0011 #define GOOGLE_PROTOBUF_UTIL_JSON_UTIL_H__
0012
0013 #include "absl/base/attributes.h"
0014 #include "google/protobuf/json/json.h"
0015
0016 namespace google {
0017 namespace protobuf {
0018 namespace util {
0019 using JsonParseOptions = ::google::protobuf::json::ParseOptions;
0020 using JsonPrintOptions = ::google::protobuf::json::PrintOptions;
0021
0022 using JsonOptions ABSL_DEPRECATED("use JsonPrintOptions instead") =
0023 JsonPrintOptions;
0024
0025 using ::google::protobuf::json::BinaryToJsonStream;
0026 using ::google::protobuf::json::BinaryToJsonString;
0027
0028 using ::google::protobuf::json::JsonStringToMessage;
0029 using ::google::protobuf::json::JsonToBinaryStream;
0030
0031 using ::google::protobuf::json::JsonToBinaryString;
0032 using ::google::protobuf::json::MessageToJsonString;
0033 }
0034 }
0035 }
0036
0037 #endif