aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/node_generator.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/node_generator.h')
-rw-r--r--src/compiler/node_generator.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/compiler/node_generator.h b/src/compiler/node_generator.h
index a9ffe75fc8..f3a531597a 100644
--- a/src/compiler/node_generator.h
+++ b/src/compiler/node_generator.h
@@ -23,7 +23,14 @@
namespace grpc_node_generator {
-grpc::string GenerateFile(const grpc::protobuf::FileDescriptor* file);
+// Contains all the parameters that are parsed from the command line.
+struct Parameters {
+ // Sets the earliest version of nodejs that needs to be supported.
+ int minimum_node_version;
+};
+
+grpc::string GenerateFile(const grpc::protobuf::FileDescriptor* file,
+ const Parameters& params);
} // namespace grpc_node_generator