parent
8fe039a69a
commit
f52426827e
26 changed files with 295 additions and 2095 deletions
@ -1,184 +0,0 @@ |
||||
// Protocol Buffers - Google's data interchange format
|
||||
// Copyright 2008 Google Inc. All rights reserved.
|
||||
// https://developers.google.com/protocol-buffers/
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#include <sstream> |
||||
|
||||
#include <google/protobuf/compiler/code_generator.h> |
||||
#include <google/protobuf/compiler/plugin.h> |
||||
#include <google/protobuf/descriptor.h> |
||||
#include <google/protobuf/descriptor.pb.h> |
||||
#include <google/protobuf/io/printer.h> |
||||
#include <google/protobuf/io/zero_copy_stream.h> |
||||
|
||||
#include <google/protobuf/compiler/csharp/csharp_extension.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_helpers.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_field_base.h> |
||||
|
||||
using google::protobuf::internal::scoped_ptr; |
||||
|
||||
namespace google { |
||||
namespace protobuf { |
||||
namespace compiler { |
||||
namespace csharp { |
||||
|
||||
ExtensionGenerator::ExtensionGenerator(const FieldDescriptor* descriptor) |
||||
: FieldGeneratorBase(descriptor, 0) { |
||||
if (descriptor_->extension_scope()) { |
||||
variables_["scope"] = GetClassName(descriptor_->extension_scope()); |
||||
} else { |
||||
variables_["scope"] = GetFullUmbrellaClassName(descriptor_->file()); |
||||
} |
||||
variables_["extends"] = GetClassName(descriptor_->containing_type()); |
||||
variables_["capitalized_type_name"] = capitalized_type_name(); |
||||
variables_["full_name"] = descriptor_->full_name(); |
||||
variables_["access_level"] = class_access_level(); |
||||
variables_["index"] = SimpleItoa(descriptor_->index()); |
||||
variables_["property_name"] = property_name(); |
||||
variables_["type_name"] = type_name(); |
||||
if (use_lite_runtime()) { |
||||
variables_["generated_extension"] = descriptor_->is_repeated() ? |
||||
"GeneratedRepeatExtensionLite" : "GeneratedExtensionLite"; |
||||
} else { |
||||
variables_["generated_extension"] = descriptor_->is_repeated() ? |
||||
"GeneratedRepeatExtension" : "GeneratedExtension"; |
||||
} |
||||
} |
||||
|
||||
ExtensionGenerator::~ExtensionGenerator() { |
||||
} |
||||
|
||||
void ExtensionGenerator::Generate(io::Printer* printer) { |
||||
printer->Print( |
||||
"public const int $constant_name$ = $number$;\n", |
||||
"constant_name", GetFieldConstantName(descriptor_), |
||||
"number", SimpleItoa(descriptor_->number())); |
||||
|
||||
if (use_lite_runtime()) { |
||||
// TODO(jtattermusch): include the following check
|
||||
//if (Descriptor.MappedType == MappedType.Message && Descriptor.MessageType.Options.MessageSetWireFormat)
|
||||
//{
|
||||
// throw new ArgumentException(
|
||||
// "option message_set_wire_format = true; is not supported in Lite runtime extensions.");
|
||||
//}
|
||||
|
||||
printer->Print( |
||||
variables_, |
||||
"$access_level$ static pb::$generated_extension$<$extends$, $type_name$> $property_name$;\n"); |
||||
} else if (descriptor_->is_repeated()) { |
||||
printer->Print( |
||||
variables_, |
||||
"$access_level$ static pb::GeneratedExtensionBase<scg::IList<$type_name$>> $property_name$;\n"); |
||||
} else { |
||||
printer->Print( |
||||
variables_, |
||||
"$access_level$ static pb::GeneratedExtensionBase<$type_name$> $property_name$;\n"); |
||||
} |
||||
} |
||||
|
||||
void ExtensionGenerator::GenerateStaticVariableInitializers(io::Printer* printer) { |
||||
if (use_lite_runtime()) { |
||||
printer->Print( |
||||
variables_, |
||||
"$scope$.$property_name$ = \n"); |
||||
printer->Indent(); |
||||
printer->Print( |
||||
variables_, |
||||
"new pb::$generated_extension$<$extends$, $type_name$>(\n"); |
||||
printer->Indent(); |
||||
printer->Print( |
||||
variables_, |
||||
"\"$full_name$\",\n" |
||||
"$extends$.DefaultInstance,\n"); |
||||
if (!descriptor_->is_repeated()) { |
||||
std::string default_val; |
||||
if (descriptor_->has_default_value()) { |
||||
default_val = default_value(); |
||||
} else { |
||||
default_val = is_nullable_type() ? "null" : ("default(" + type_name() + ")"); |
||||
} |
||||
printer->Print("$default_val$,\n", "default_val", default_val); |
||||
} |
||||
printer->Print( |
||||
"$message_val$,\n", |
||||
"message_val", |
||||
(GetCSharpType(descriptor_->type()) == CSHARPTYPE_MESSAGE) ? |
||||
type_name() + ".DefaultInstance" : "null"); |
||||
printer->Print( |
||||
"$enum_val$,\n", |
||||
"enum_val", |
||||
(GetCSharpType(descriptor_->type()) == CSHARPTYPE_ENUM) ? |
||||
"new EnumLiteMap<" + type_name() + ">()" : "null"); |
||||
printer->Print( |
||||
variables_, |
||||
"$scope$.$property_name$FieldNumber,\n" |
||||
"pbd::FieldType.$capitalized_type_name$"); |
||||
if (descriptor_->is_repeated()) { |
||||
printer->Print( |
||||
",\n" |
||||
"$is_packed$", |
||||
"is_packed", descriptor_->is_packed() ? "true" : "false"); |
||||
} |
||||
printer->Outdent(); |
||||
printer->Print(");\n"); |
||||
printer->Outdent(); |
||||
} |
||||
else if (descriptor_->is_repeated()) |
||||
{ |
||||
printer->Print( |
||||
variables_, |
||||
"$scope$.$property_name$ = pb::GeneratedRepeatExtension<$type_name$>.CreateInstance($scope$.Descriptor.Extensions[$index$]);\n"); |
||||
} |
||||
else |
||||
{ |
||||
printer->Print( |
||||
variables_, |
||||
"$scope$.$property_name$ = pb::GeneratedSingleExtension<$type_name$>.CreateInstance($scope$.Descriptor.Extensions[$index$]);\n"); |
||||
} |
||||
} |
||||
|
||||
void ExtensionGenerator::GenerateExtensionRegistrationCode(io::Printer* printer) { |
||||
printer->Print( |
||||
variables_, |
||||
"registry.Add($scope$.$property_name$);\n"); |
||||
} |
||||
|
||||
void ExtensionGenerator::WriteHash(io::Printer* printer) { |
||||
} |
||||
|
||||
void ExtensionGenerator::WriteEquals(io::Printer* printer) { |
||||
} |
||||
|
||||
void ExtensionGenerator::WriteToString(io::Printer* printer) { |
||||
} |
||||
|
||||
} // namespace csharp
|
||||
} // namespace compiler
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
@ -1,78 +0,0 @@ |
||||
// Protocol Buffers - Google's data interchange format
|
||||
// Copyright 2008 Google Inc. All rights reserved.
|
||||
// https://developers.google.com/protocol-buffers/
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#ifndef GOOGLE_PROTOBUF_COMPILER_CSHARP_EXTENSION_H__ |
||||
#define GOOGLE_PROTOBUF_COMPILER_CSHARP_EXTENSION_H__ |
||||
|
||||
#include <string> |
||||
|
||||
#include <google/protobuf/compiler/code_generator.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_field_base.h> |
||||
|
||||
namespace google { |
||||
namespace protobuf { |
||||
namespace compiler { |
||||
namespace csharp { |
||||
|
||||
class ExtensionGenerator : public FieldGeneratorBase { |
||||
public: |
||||
ExtensionGenerator(const FieldDescriptor* descriptor); |
||||
~ExtensionGenerator(); |
||||
|
||||
void GenerateStaticVariableInitializers(io::Printer* printer); |
||||
void GenerateExtensionRegistrationCode(io::Printer* printer); |
||||
void Generate(io::Printer* printer); |
||||
|
||||
virtual void WriteHash(io::Printer* printer); |
||||
virtual void WriteEquals(io::Printer* printer); |
||||
virtual void WriteToString(io::Printer* printer); |
||||
|
||||
virtual void GenerateMembers(io::Printer* printer) {}; |
||||
virtual void GenerateBuilderMembers(io::Printer* printer) {}; |
||||
virtual void GenerateMergingCode(io::Printer* printer) {}; |
||||
virtual void GenerateBuildingCode(io::Printer* printer) {}; |
||||
virtual void GenerateParsingCode(io::Printer* printer) {}; |
||||
virtual void GenerateSerializationCode(io::Printer* printer) {}; |
||||
virtual void GenerateSerializedSizeCode(io::Printer* printer) {}; |
||||
|
||||
private: |
||||
std::string scope_; |
||||
std::string extends_; |
||||
|
||||
GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ExtensionGenerator); |
||||
}; |
||||
|
||||
} // namespace csharp
|
||||
} // namespace compiler
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
#endif // GOOGLE_PROTOBUF_COMPILER_CSHARP_EXTENSION_H__
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,136 +0,0 @@ |
||||
// Protocol Buffers - Google's data interchange format
|
||||
// Copyright 2008 Google Inc. All rights reserved.
|
||||
// https://developers.google.com/protocol-buffers/
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
// Author: kenton@google.com (Kenton Varda)
|
||||
// Based on original Protocol Buffers design by
|
||||
// Sanjay Ghemawat, Jeff Dean, and others.
|
||||
|
||||
#include <algorithm> |
||||
#include <google/protobuf/stubs/hash.h> |
||||
#include <limits> |
||||
#include <vector> |
||||
|
||||
#include <google/protobuf/compiler/csharp/csharp_writer.h> |
||||
#include <google/protobuf/descriptor.pb.h> |
||||
#include <google/protobuf/io/printer.h> |
||||
#include <google/protobuf/wire_format.h> |
||||
#include <google/protobuf/stubs/strutil.h> |
||||
#include <google/protobuf/stubs/substitute.h> |
||||
|
||||
#include <google/protobuf/compiler/csharp/csharp_field_base.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_enum_field.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_message_field.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_primitive_field.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_repeated_enum_field.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_repeated_message_field.h> |
||||
#include <google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h> |
||||
|
||||
namespace google { |
||||
namespace protobuf { |
||||
namespace compiler { |
||||
namespace csharp { |
||||
|
||||
Writer::Writer(google::protobuf::io::Printer* printer) |
||||
: printer_(printer), |
||||
newline_("\n") { |
||||
// TODO(jtattermusch): make newline customizable.
|
||||
} |
||||
|
||||
Writer::~Writer() { |
||||
} |
||||
|
||||
void Writer::Indent() { |
||||
printer_->Indent(); |
||||
} |
||||
|
||||
void Writer::Outdent() { |
||||
printer_->Outdent(); |
||||
} |
||||
|
||||
void Writer::Write(const char* text) { |
||||
printer_->Print(text); |
||||
} |
||||
|
||||
void Writer::Write(const char* text, const string& value0) { |
||||
printer_->Print(text, "0", value0); |
||||
} |
||||
|
||||
void Writer::Write(const char* text, const string& value0, |
||||
const string& value1) { |
||||
printer_->Print(text, "0", value0, "1", value1); |
||||
} |
||||
|
||||
void Writer::Write(const char* text, const string& value0, const string& value1, |
||||
const string& value2) { |
||||
printer_->Print(text, "0", value0, "1", value1, "2", value2); |
||||
} |
||||
|
||||
void Writer::Write(const char* text, const string& value0, const string& value1, |
||||
const string& value2, const string& value3) { |
||||
printer_->Print(text, "0", value0, "1", value1, "2", value2, "3", value3); |
||||
} |
||||
|
||||
void Writer::WriteLine() { |
||||
printer_->Print(newline_); |
||||
} |
||||
|
||||
void Writer::WriteLine(const char* text) { |
||||
Write(text); |
||||
WriteLine(); |
||||
} |
||||
|
||||
void Writer::WriteLine(const char* text, const string& value0) { |
||||
Write(text, value0); |
||||
WriteLine(); |
||||
} |
||||
|
||||
void Writer::WriteLine(const char* text, const string& value0, |
||||
const string& value1) { |
||||
Write(text, value0, value1); |
||||
WriteLine(); |
||||
} |
||||
|
||||
void Writer::WriteLine(const char* text, const string& value0, |
||||
const string& value1, const string& value2) { |
||||
Write(text, value0, value1, value2); |
||||
WriteLine(); |
||||
} |
||||
|
||||
void Writer::WriteLine(const char* text, const string& value0, |
||||
const string& value1, const string& value2, |
||||
const string& value3) { |
||||
Write(text, value0, value1, value2, value3); |
||||
WriteLine(); |
||||
} |
||||
|
||||
} // namespace java
|
||||
} // namespace compiler
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
@ -1,93 +0,0 @@ |
||||
// Protocol Buffers - Google's data interchange format
|
||||
// Copyright 2008 Google Inc. All rights reserved.
|
||||
// https://developers.google.com/protocol-buffers/
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
// * Neither the name of Google Inc. nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from
|
||||
// this software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
// Author: kenton@google.com (Kenton Varda)
|
||||
// Based on original Protocol Buffers design by
|
||||
// Sanjay Ghemawat, Jeff Dean, and others.
|
||||
|
||||
#ifndef GOOGLE_PROTOBUF_COMPILER_CSHARP_WRITER_H__ |
||||
#define GOOGLE_PROTOBUF_COMPILER_CSHARP_WRITER_H__ |
||||
|
||||
#include <string> |
||||
#include <google/protobuf/descriptor.pb.h> |
||||
#include <google/protobuf/descriptor.h> |
||||
#include <google/protobuf/compiler/code_generator.h> |
||||
#include <google/protobuf/io/printer.h> |
||||
|
||||
namespace google { |
||||
namespace protobuf { |
||||
namespace compiler { |
||||
namespace csharp { |
||||
|
||||
// Simple wrapper around Printer that supports customizable line endings
|
||||
// and number-based variables (e.g. $0$).
|
||||
class Writer { |
||||
public: |
||||
Writer(io::Printer* printer); |
||||
~Writer(); |
||||
|
||||
void Indent(); |
||||
void Outdent(); |
||||
|
||||
void Write(const char* text); |
||||
|
||||
void Write(const char* text, const string& value0); |
||||
|
||||
void Write(const char* text, const string& value0, const string& value1); |
||||
|
||||
void Write(const char* text, const string& value0, const string& value1, |
||||
const string& value2); |
||||
|
||||
void Write(const char* text, const string& value0, const string& value1, |
||||
const string& value2, const string& value3); |
||||
|
||||
void WriteLine(); |
||||
|
||||
void WriteLine(const char* text); |
||||
|
||||
void WriteLine(const char* text, const string& value0); |
||||
|
||||
void WriteLine(const char* text, const string& value0, const string& value1); |
||||
|
||||
void WriteLine(const char* text, const string& value0, const string& value1, |
||||
const string& value2); |
||||
|
||||
void WriteLine(const char* text, const string& value0, const string& value1, |
||||
const string& value2, const string& value3); |
||||
private: |
||||
io::Printer* printer_; |
||||
const char* newline_; |
||||
}; |
||||
|
||||
} // namespace csharp
|
||||
} // namespace compiler
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
#endif // GOOGLE_PROTOBUF_COMPILER_CSHARP_WRITER_H__
|
Loading…
Reference in new issue