Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
19 lines
701 B
19 lines
701 B
#ifndef THIRD_PARTY_UPB_UPB_GENERATOR_PLUGIN_BOOTSTRAP_H_ |
|
#define THIRD_PARTY_UPB_UPB_GENERATOR_PLUGIN_BOOTSTRAP_H_ |
|
|
|
// IWYU pragma: begin_exports |
|
|
|
#if defined(UPB_BOOTSTRAP_STAGE) && UPB_BOOTSTRAP_STAGE == 0 |
|
// This header is checked in. |
|
#include "upb_generator/stage0/google/protobuf/compiler/plugin.upb.h" |
|
#elif UPB_BOOTSTRAP_STAGE == 1 |
|
// This header is generated at build time by the bootstrapping process. |
|
#include "upb_generator/stage1/google/protobuf/compiler/plugin.upb.h" |
|
#else |
|
// This is the normal header, generated by upb_c_proto_library(). |
|
#include "google/protobuf/compiler/plugin.upb.h" |
|
#endif |
|
|
|
// IWYU pragma: end_exports |
|
|
|
#endif // THIRD_PARTY_UPB_UPB_GENERATOR_PLUGIN_BOOTSTRAP_H_
|
|
|