Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
347 B
17 lines
347 B
1 year ago
|
#ifndef THIRD_PARTY_UPB_UPB_GENERATOR_MANGLE_H_
|
||
|
#define THIRD_PARTY_UPB_UPB_GENERATOR_MANGLE_H_
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "absl/strings/string_view.h"
|
||
|
|
||
|
namespace upb {
|
||
|
namespace generator {
|
||
|
|
||
|
std::string MessageInit(absl::string_view full_name);
|
||
|
|
||
|
} // namespace generator
|
||
|
} // namespace upb
|
||
|
|
||
|
#endif // THIRD_PARTY_UPB_UPB_GENERATOR_MANGLE_H_
|