diff options
Diffstat (limited to 'src/compiler/python_generator.h')
-rw-r--r-- | src/compiler/python_generator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/python_generator.h b/src/compiler/python_generator.h index fc51b48dae..9bbb83bca6 100644 --- a/src/compiler/python_generator.h +++ b/src/compiler/python_generator.h @@ -43,6 +43,7 @@ namespace grpc_python_generator { // Data pertaining to configuration of the generator with respect to anything // that may be used internally at Google. struct GeneratorConfiguration { + GeneratorConfiguration(); grpc::string grpc_package_root; grpc::string beta_package_root; }; @@ -56,6 +57,7 @@ class PythonGrpcGenerator : public grpc::protobuf::compiler::CodeGenerator { const grpc::string& parameter, grpc::protobuf::compiler::GeneratorContext* context, grpc::string* error) const; + private: GeneratorConfiguration config_; }; |