diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Protobuf/Compilers')
| -rw-r--r-- | Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs b/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs index 18aab84c6..0d97c9711 100644 --- a/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs +++ b/Software/Visual_Studio/Tango.Protobuf/Compilers/CCompiler.cs @@ -37,5 +37,24 @@ namespace Tango.Protobuf.Compilers { return "protoc-c"; } + + /// <summary> + /// Compiles the specified .proto message file. + /// </summary> + /// <param name="inputFile">.proto file to compile</param> + /// <returns> + /// A list of compiled results. + /// </returns> + //public override IEnumerable<CompilerFileResult> CompileFile(string inputFile) + //{ + // var files = base.CompileFile(inputFile); + + // foreach (var file in files) + // { + // file.Name = file.Name.Replace(".pb-c", ""); + // } + + // return files; + //} } } |
