12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- // This class just contains partial classes for each of the
- // autogenerated classes, so that they implement
- // IDescriptorProto
- namespace Google.ProtocolBuffers.DescriptorProtos {
- public partial class DescriptorProto : IDescriptorProto<MessageOptions> { }
- public partial class EnumDescriptorProto : IDescriptorProto<EnumOptions> { }
- public partial class EnumValueDescriptorProto : IDescriptorProto<EnumValueOptions> { }
- public partial class FieldDescriptorProto : IDescriptorProto<FieldOptions> { }
- public partial class FileDescriptorProto : IDescriptorProto<FileOptions> { }
- public partial class MethodDescriptorProto : IDescriptorProto<MethodOptions> { }
- public partial class ServiceDescriptorProto : IDescriptorProto<ServiceOptions> { }
- }
|