diff options
Diffstat (limited to 'src/compiler/schema_interface.h')
-rw-r--r-- | src/compiler/schema_interface.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/compiler/schema_interface.h b/src/compiler/schema_interface.h index 828c7753df..b2021f2926 100644 --- a/src/compiler/schema_interface.h +++ b/src/compiler/schema_interface.h @@ -56,10 +56,10 @@ struct Method : public CommentHolder { virtual grpc::string output_type_name() const = 0; virtual bool get_module_and_message_path_input( - grpc::string *str, grpc::string generator_file_name, + grpc::string* str, grpc::string generator_file_name, bool generate_in_pb2_grpc, grpc::string import_prefix) const = 0; virtual bool get_module_and_message_path_output( - grpc::string *str, grpc::string generator_file_name, + grpc::string* str, grpc::string generator_file_name, bool generate_in_pb2_grpc, grpc::string import_prefix) const = 0; virtual grpc::string get_input_type_name() const = 0; @@ -83,9 +83,9 @@ struct Service : public CommentHolder { struct Printer { virtual ~Printer() {} - virtual void Print(const std::map<grpc::string, grpc::string> &vars, - const char *template_string) = 0; - virtual void Print(const char *string) = 0; + virtual void Print(const std::map<grpc::string, grpc::string>& vars, + const char* template_string) = 0; + virtual void Print(const char* string) = 0; virtual void Indent() = 0; virtual void Outdent() = 0; }; @@ -104,7 +104,7 @@ struct File : public CommentHolder { virtual int service_count() const = 0; virtual std::unique_ptr<const Service> service(int i) const = 0; - virtual std::unique_ptr<Printer> CreatePrinter(grpc::string *str) const = 0; + virtual std::unique_ptr<Printer> CreatePrinter(grpc::string* str) const = 0; }; } // namespace grpc_generator |