1 2 #ifndef UPBC_GENERATOR_H_ 3 #define UPBC_GENERATOR_H_ 4 5 #include <memory> 6 #include <google/protobuf/compiler/code_generator.h> 7 8 namespace upbc { 9 std::unique_ptr<google::protobuf::compiler::CodeGenerator> GetGenerator(); 10 } 11 12 #endif // UPBC_GENERATOR_H_ 13