File indexing completed on 2025-01-31 10:11:56
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef GOOGLE_PROTOBUF_COMPILER_CPP_TRACKER_H__
0009 #define GOOGLE_PROTOBUF_COMPILER_CPP_TRACKER_H__
0010
0011 #include <vector>
0012
0013 #include "google/protobuf/compiler/cpp/options.h"
0014 #include "google/protobuf/descriptor.h"
0015 #include "google/protobuf/io/printer.h"
0016
0017 namespace google {
0018 namespace protobuf {
0019 namespace compiler {
0020 namespace cpp {
0021
0022
0023 std::vector<google::protobuf::io::Printer::Sub> MakeTrackerCalls(
0024 const google::protobuf::Descriptor* message, const Options& opts);
0025
0026
0027 std::vector<google::protobuf::io::Printer::Sub> MakeTrackerCalls(
0028 const google::protobuf::FieldDescriptor* field, const Options& opts);
0029
0030 }
0031 }
0032 }
0033 }
0034
0035 #endif