Merge pull request #2462 from jbrianceau/fix-comp-builds-part2
C++: export _xxx_default_instance_ symbols
This commit is contained in:
commit
4474c042c0
@ -33,7 +33,7 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class Any;
|
||||
class AnyDefaultTypeInternal;
|
||||
extern AnyDefaultTypeInternal _Any_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern AnyDefaultTypeInternal _Any_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -34,31 +34,31 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class Api;
|
||||
class ApiDefaultTypeInternal;
|
||||
extern ApiDefaultTypeInternal _Api_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern ApiDefaultTypeInternal _Api_default_instance_;
|
||||
class Enum;
|
||||
class EnumDefaultTypeInternal;
|
||||
extern EnumDefaultTypeInternal _Enum_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumDefaultTypeInternal _Enum_default_instance_;
|
||||
class EnumValue;
|
||||
class EnumValueDefaultTypeInternal;
|
||||
extern EnumValueDefaultTypeInternal _EnumValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumValueDefaultTypeInternal _EnumValue_default_instance_;
|
||||
class Field;
|
||||
class FieldDefaultTypeInternal;
|
||||
extern FieldDefaultTypeInternal _Field_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FieldDefaultTypeInternal _Field_default_instance_;
|
||||
class Method;
|
||||
class MethodDefaultTypeInternal;
|
||||
extern MethodDefaultTypeInternal _Method_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern MethodDefaultTypeInternal _Method_default_instance_;
|
||||
class Mixin;
|
||||
class MixinDefaultTypeInternal;
|
||||
extern MixinDefaultTypeInternal _Mixin_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern MixinDefaultTypeInternal _Mixin_default_instance_;
|
||||
class Option;
|
||||
class OptionDefaultTypeInternal;
|
||||
extern OptionDefaultTypeInternal _Option_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern OptionDefaultTypeInternal _Option_default_instance_;
|
||||
class SourceContext;
|
||||
class SourceContextDefaultTypeInternal;
|
||||
extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
|
||||
class Type;
|
||||
class TypeDefaultTypeInternal;
|
||||
extern TypeDefaultTypeInternal _Type_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern TypeDefaultTypeInternal _Type_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -403,7 +403,7 @@ class FileGenerator::ForwardDeclarations {
|
||||
std::map<string, const Descriptor*>& classes() { return classes_; }
|
||||
std::map<string, const EnumDescriptor*>& enums() { return enums_; }
|
||||
|
||||
void Print(io::Printer* printer) const {
|
||||
void Print(io::Printer* printer, const Options& options) const {
|
||||
for (std::map<string, const EnumDescriptor *>::const_iterator
|
||||
it = enums_.begin(),
|
||||
end = enums_.end();
|
||||
@ -422,8 +422,11 @@ class FileGenerator::ForwardDeclarations {
|
||||
|
||||
printer->Print(
|
||||
"class $classname$DefaultTypeInternal;\n"
|
||||
"$dllexport_decl$"
|
||||
"extern $classname$DefaultTypeInternal "
|
||||
"_$classname$_default_instance_;\n", // NOLINT
|
||||
"dllexport_decl",
|
||||
options.dllexport_decl.empty() ? "" : options.dllexport_decl + " ",
|
||||
"classname",
|
||||
it->first);
|
||||
}
|
||||
@ -433,7 +436,7 @@ class FileGenerator::ForwardDeclarations {
|
||||
it != end; ++it) {
|
||||
printer->Print("namespace $nsname$ {\n",
|
||||
"nsname", it->first);
|
||||
it->second->Print(printer);
|
||||
it->second->Print(printer, options);
|
||||
printer->Print("} // namespace $nsname$\n",
|
||||
"nsname", it->first);
|
||||
}
|
||||
@ -808,7 +811,7 @@ void FileGenerator::GenerateForwardDeclarations(io::Printer* printer) {
|
||||
dependency.FillForwardDeclarations(&decls);
|
||||
}
|
||||
FillForwardDeclarations(&decls);
|
||||
decls.Print(printer);
|
||||
decls.Print(printer, options_);
|
||||
}
|
||||
|
||||
void FileGenerator::FillForwardDeclarations(ForwardDeclarations* decls) {
|
||||
|
@ -33,92 +33,92 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class DescriptorProto;
|
||||
class DescriptorProtoDefaultTypeInternal;
|
||||
extern DescriptorProtoDefaultTypeInternal _DescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern DescriptorProtoDefaultTypeInternal _DescriptorProto_default_instance_;
|
||||
class DescriptorProto_ExtensionRange;
|
||||
class DescriptorProto_ExtensionRangeDefaultTypeInternal;
|
||||
extern DescriptorProto_ExtensionRangeDefaultTypeInternal _DescriptorProto_ExtensionRange_default_instance_;
|
||||
LIBPROTOC_EXPORT extern DescriptorProto_ExtensionRangeDefaultTypeInternal _DescriptorProto_ExtensionRange_default_instance_;
|
||||
class DescriptorProto_ReservedRange;
|
||||
class DescriptorProto_ReservedRangeDefaultTypeInternal;
|
||||
extern DescriptorProto_ReservedRangeDefaultTypeInternal _DescriptorProto_ReservedRange_default_instance_;
|
||||
LIBPROTOC_EXPORT extern DescriptorProto_ReservedRangeDefaultTypeInternal _DescriptorProto_ReservedRange_default_instance_;
|
||||
class EnumDescriptorProto;
|
||||
class EnumDescriptorProtoDefaultTypeInternal;
|
||||
extern EnumDescriptorProtoDefaultTypeInternal _EnumDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern EnumDescriptorProtoDefaultTypeInternal _EnumDescriptorProto_default_instance_;
|
||||
class EnumOptions;
|
||||
class EnumOptionsDefaultTypeInternal;
|
||||
extern EnumOptionsDefaultTypeInternal _EnumOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern EnumOptionsDefaultTypeInternal _EnumOptions_default_instance_;
|
||||
class EnumValueDescriptorProto;
|
||||
class EnumValueDescriptorProtoDefaultTypeInternal;
|
||||
extern EnumValueDescriptorProtoDefaultTypeInternal _EnumValueDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern EnumValueDescriptorProtoDefaultTypeInternal _EnumValueDescriptorProto_default_instance_;
|
||||
class EnumValueOptions;
|
||||
class EnumValueOptionsDefaultTypeInternal;
|
||||
extern EnumValueOptionsDefaultTypeInternal _EnumValueOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern EnumValueOptionsDefaultTypeInternal _EnumValueOptions_default_instance_;
|
||||
class FieldDescriptorProto;
|
||||
class FieldDescriptorProtoDefaultTypeInternal;
|
||||
extern FieldDescriptorProtoDefaultTypeInternal _FieldDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern FieldDescriptorProtoDefaultTypeInternal _FieldDescriptorProto_default_instance_;
|
||||
class FieldOptions;
|
||||
class FieldOptionsDefaultTypeInternal;
|
||||
extern FieldOptionsDefaultTypeInternal _FieldOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern FieldOptionsDefaultTypeInternal _FieldOptions_default_instance_;
|
||||
class FileDescriptorProto;
|
||||
class FileDescriptorProtoDefaultTypeInternal;
|
||||
extern FileDescriptorProtoDefaultTypeInternal _FileDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern FileDescriptorProtoDefaultTypeInternal _FileDescriptorProto_default_instance_;
|
||||
class FileDescriptorSet;
|
||||
class FileDescriptorSetDefaultTypeInternal;
|
||||
extern FileDescriptorSetDefaultTypeInternal _FileDescriptorSet_default_instance_;
|
||||
LIBPROTOC_EXPORT extern FileDescriptorSetDefaultTypeInternal _FileDescriptorSet_default_instance_;
|
||||
class FileOptions;
|
||||
class FileOptionsDefaultTypeInternal;
|
||||
extern FileOptionsDefaultTypeInternal _FileOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern FileOptionsDefaultTypeInternal _FileOptions_default_instance_;
|
||||
class GeneratedCodeInfo;
|
||||
class GeneratedCodeInfoDefaultTypeInternal;
|
||||
extern GeneratedCodeInfoDefaultTypeInternal _GeneratedCodeInfo_default_instance_;
|
||||
LIBPROTOC_EXPORT extern GeneratedCodeInfoDefaultTypeInternal _GeneratedCodeInfo_default_instance_;
|
||||
class GeneratedCodeInfo_Annotation;
|
||||
class GeneratedCodeInfo_AnnotationDefaultTypeInternal;
|
||||
extern GeneratedCodeInfo_AnnotationDefaultTypeInternal _GeneratedCodeInfo_Annotation_default_instance_;
|
||||
LIBPROTOC_EXPORT extern GeneratedCodeInfo_AnnotationDefaultTypeInternal _GeneratedCodeInfo_Annotation_default_instance_;
|
||||
class MessageOptions;
|
||||
class MessageOptionsDefaultTypeInternal;
|
||||
extern MessageOptionsDefaultTypeInternal _MessageOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern MessageOptionsDefaultTypeInternal _MessageOptions_default_instance_;
|
||||
class MethodDescriptorProto;
|
||||
class MethodDescriptorProtoDefaultTypeInternal;
|
||||
extern MethodDescriptorProtoDefaultTypeInternal _MethodDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern MethodDescriptorProtoDefaultTypeInternal _MethodDescriptorProto_default_instance_;
|
||||
class MethodOptions;
|
||||
class MethodOptionsDefaultTypeInternal;
|
||||
extern MethodOptionsDefaultTypeInternal _MethodOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern MethodOptionsDefaultTypeInternal _MethodOptions_default_instance_;
|
||||
class OneofDescriptorProto;
|
||||
class OneofDescriptorProtoDefaultTypeInternal;
|
||||
extern OneofDescriptorProtoDefaultTypeInternal _OneofDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern OneofDescriptorProtoDefaultTypeInternal _OneofDescriptorProto_default_instance_;
|
||||
class OneofOptions;
|
||||
class OneofOptionsDefaultTypeInternal;
|
||||
extern OneofOptionsDefaultTypeInternal _OneofOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern OneofOptionsDefaultTypeInternal _OneofOptions_default_instance_;
|
||||
class ServiceDescriptorProto;
|
||||
class ServiceDescriptorProtoDefaultTypeInternal;
|
||||
extern ServiceDescriptorProtoDefaultTypeInternal _ServiceDescriptorProto_default_instance_;
|
||||
LIBPROTOC_EXPORT extern ServiceDescriptorProtoDefaultTypeInternal _ServiceDescriptorProto_default_instance_;
|
||||
class ServiceOptions;
|
||||
class ServiceOptionsDefaultTypeInternal;
|
||||
extern ServiceOptionsDefaultTypeInternal _ServiceOptions_default_instance_;
|
||||
LIBPROTOC_EXPORT extern ServiceOptionsDefaultTypeInternal _ServiceOptions_default_instance_;
|
||||
class SourceCodeInfo;
|
||||
class SourceCodeInfoDefaultTypeInternal;
|
||||
extern SourceCodeInfoDefaultTypeInternal _SourceCodeInfo_default_instance_;
|
||||
LIBPROTOC_EXPORT extern SourceCodeInfoDefaultTypeInternal _SourceCodeInfo_default_instance_;
|
||||
class SourceCodeInfo_Location;
|
||||
class SourceCodeInfo_LocationDefaultTypeInternal;
|
||||
extern SourceCodeInfo_LocationDefaultTypeInternal _SourceCodeInfo_Location_default_instance_;
|
||||
LIBPROTOC_EXPORT extern SourceCodeInfo_LocationDefaultTypeInternal _SourceCodeInfo_Location_default_instance_;
|
||||
class UninterpretedOption;
|
||||
class UninterpretedOptionDefaultTypeInternal;
|
||||
extern UninterpretedOptionDefaultTypeInternal _UninterpretedOption_default_instance_;
|
||||
LIBPROTOC_EXPORT extern UninterpretedOptionDefaultTypeInternal _UninterpretedOption_default_instance_;
|
||||
class UninterpretedOption_NamePart;
|
||||
class UninterpretedOption_NamePartDefaultTypeInternal;
|
||||
extern UninterpretedOption_NamePartDefaultTypeInternal _UninterpretedOption_NamePart_default_instance_;
|
||||
LIBPROTOC_EXPORT extern UninterpretedOption_NamePartDefaultTypeInternal _UninterpretedOption_NamePart_default_instance_;
|
||||
namespace compiler {
|
||||
class CodeGeneratorRequest;
|
||||
class CodeGeneratorRequestDefaultTypeInternal;
|
||||
extern CodeGeneratorRequestDefaultTypeInternal _CodeGeneratorRequest_default_instance_;
|
||||
LIBPROTOC_EXPORT extern CodeGeneratorRequestDefaultTypeInternal _CodeGeneratorRequest_default_instance_;
|
||||
class CodeGeneratorResponse;
|
||||
class CodeGeneratorResponseDefaultTypeInternal;
|
||||
extern CodeGeneratorResponseDefaultTypeInternal _CodeGeneratorResponse_default_instance_;
|
||||
LIBPROTOC_EXPORT extern CodeGeneratorResponseDefaultTypeInternal _CodeGeneratorResponse_default_instance_;
|
||||
class CodeGeneratorResponse_File;
|
||||
class CodeGeneratorResponse_FileDefaultTypeInternal;
|
||||
extern CodeGeneratorResponse_FileDefaultTypeInternal _CodeGeneratorResponse_File_default_instance_;
|
||||
LIBPROTOC_EXPORT extern CodeGeneratorResponse_FileDefaultTypeInternal _CodeGeneratorResponse_File_default_instance_;
|
||||
class Version;
|
||||
class VersionDefaultTypeInternal;
|
||||
extern VersionDefaultTypeInternal _Version_default_instance_;
|
||||
LIBPROTOC_EXPORT extern VersionDefaultTypeInternal _Version_default_instance_;
|
||||
} // namespace compiler
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
@ -33,79 +33,79 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class DescriptorProto;
|
||||
class DescriptorProtoDefaultTypeInternal;
|
||||
extern DescriptorProtoDefaultTypeInternal _DescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern DescriptorProtoDefaultTypeInternal _DescriptorProto_default_instance_;
|
||||
class DescriptorProto_ExtensionRange;
|
||||
class DescriptorProto_ExtensionRangeDefaultTypeInternal;
|
||||
extern DescriptorProto_ExtensionRangeDefaultTypeInternal _DescriptorProto_ExtensionRange_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern DescriptorProto_ExtensionRangeDefaultTypeInternal _DescriptorProto_ExtensionRange_default_instance_;
|
||||
class DescriptorProto_ReservedRange;
|
||||
class DescriptorProto_ReservedRangeDefaultTypeInternal;
|
||||
extern DescriptorProto_ReservedRangeDefaultTypeInternal _DescriptorProto_ReservedRange_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern DescriptorProto_ReservedRangeDefaultTypeInternal _DescriptorProto_ReservedRange_default_instance_;
|
||||
class EnumDescriptorProto;
|
||||
class EnumDescriptorProtoDefaultTypeInternal;
|
||||
extern EnumDescriptorProtoDefaultTypeInternal _EnumDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumDescriptorProtoDefaultTypeInternal _EnumDescriptorProto_default_instance_;
|
||||
class EnumOptions;
|
||||
class EnumOptionsDefaultTypeInternal;
|
||||
extern EnumOptionsDefaultTypeInternal _EnumOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumOptionsDefaultTypeInternal _EnumOptions_default_instance_;
|
||||
class EnumValueDescriptorProto;
|
||||
class EnumValueDescriptorProtoDefaultTypeInternal;
|
||||
extern EnumValueDescriptorProtoDefaultTypeInternal _EnumValueDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumValueDescriptorProtoDefaultTypeInternal _EnumValueDescriptorProto_default_instance_;
|
||||
class EnumValueOptions;
|
||||
class EnumValueOptionsDefaultTypeInternal;
|
||||
extern EnumValueOptionsDefaultTypeInternal _EnumValueOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumValueOptionsDefaultTypeInternal _EnumValueOptions_default_instance_;
|
||||
class FieldDescriptorProto;
|
||||
class FieldDescriptorProtoDefaultTypeInternal;
|
||||
extern FieldDescriptorProtoDefaultTypeInternal _FieldDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FieldDescriptorProtoDefaultTypeInternal _FieldDescriptorProto_default_instance_;
|
||||
class FieldOptions;
|
||||
class FieldOptionsDefaultTypeInternal;
|
||||
extern FieldOptionsDefaultTypeInternal _FieldOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FieldOptionsDefaultTypeInternal _FieldOptions_default_instance_;
|
||||
class FileDescriptorProto;
|
||||
class FileDescriptorProtoDefaultTypeInternal;
|
||||
extern FileDescriptorProtoDefaultTypeInternal _FileDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FileDescriptorProtoDefaultTypeInternal _FileDescriptorProto_default_instance_;
|
||||
class FileDescriptorSet;
|
||||
class FileDescriptorSetDefaultTypeInternal;
|
||||
extern FileDescriptorSetDefaultTypeInternal _FileDescriptorSet_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FileDescriptorSetDefaultTypeInternal _FileDescriptorSet_default_instance_;
|
||||
class FileOptions;
|
||||
class FileOptionsDefaultTypeInternal;
|
||||
extern FileOptionsDefaultTypeInternal _FileOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FileOptionsDefaultTypeInternal _FileOptions_default_instance_;
|
||||
class GeneratedCodeInfo;
|
||||
class GeneratedCodeInfoDefaultTypeInternal;
|
||||
extern GeneratedCodeInfoDefaultTypeInternal _GeneratedCodeInfo_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern GeneratedCodeInfoDefaultTypeInternal _GeneratedCodeInfo_default_instance_;
|
||||
class GeneratedCodeInfo_Annotation;
|
||||
class GeneratedCodeInfo_AnnotationDefaultTypeInternal;
|
||||
extern GeneratedCodeInfo_AnnotationDefaultTypeInternal _GeneratedCodeInfo_Annotation_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern GeneratedCodeInfo_AnnotationDefaultTypeInternal _GeneratedCodeInfo_Annotation_default_instance_;
|
||||
class MessageOptions;
|
||||
class MessageOptionsDefaultTypeInternal;
|
||||
extern MessageOptionsDefaultTypeInternal _MessageOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern MessageOptionsDefaultTypeInternal _MessageOptions_default_instance_;
|
||||
class MethodDescriptorProto;
|
||||
class MethodDescriptorProtoDefaultTypeInternal;
|
||||
extern MethodDescriptorProtoDefaultTypeInternal _MethodDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern MethodDescriptorProtoDefaultTypeInternal _MethodDescriptorProto_default_instance_;
|
||||
class MethodOptions;
|
||||
class MethodOptionsDefaultTypeInternal;
|
||||
extern MethodOptionsDefaultTypeInternal _MethodOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern MethodOptionsDefaultTypeInternal _MethodOptions_default_instance_;
|
||||
class OneofDescriptorProto;
|
||||
class OneofDescriptorProtoDefaultTypeInternal;
|
||||
extern OneofDescriptorProtoDefaultTypeInternal _OneofDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern OneofDescriptorProtoDefaultTypeInternal _OneofDescriptorProto_default_instance_;
|
||||
class OneofOptions;
|
||||
class OneofOptionsDefaultTypeInternal;
|
||||
extern OneofOptionsDefaultTypeInternal _OneofOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern OneofOptionsDefaultTypeInternal _OneofOptions_default_instance_;
|
||||
class ServiceDescriptorProto;
|
||||
class ServiceDescriptorProtoDefaultTypeInternal;
|
||||
extern ServiceDescriptorProtoDefaultTypeInternal _ServiceDescriptorProto_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern ServiceDescriptorProtoDefaultTypeInternal _ServiceDescriptorProto_default_instance_;
|
||||
class ServiceOptions;
|
||||
class ServiceOptionsDefaultTypeInternal;
|
||||
extern ServiceOptionsDefaultTypeInternal _ServiceOptions_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern ServiceOptionsDefaultTypeInternal _ServiceOptions_default_instance_;
|
||||
class SourceCodeInfo;
|
||||
class SourceCodeInfoDefaultTypeInternal;
|
||||
extern SourceCodeInfoDefaultTypeInternal _SourceCodeInfo_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern SourceCodeInfoDefaultTypeInternal _SourceCodeInfo_default_instance_;
|
||||
class SourceCodeInfo_Location;
|
||||
class SourceCodeInfo_LocationDefaultTypeInternal;
|
||||
extern SourceCodeInfo_LocationDefaultTypeInternal _SourceCodeInfo_Location_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern SourceCodeInfo_LocationDefaultTypeInternal _SourceCodeInfo_Location_default_instance_;
|
||||
class UninterpretedOption;
|
||||
class UninterpretedOptionDefaultTypeInternal;
|
||||
extern UninterpretedOptionDefaultTypeInternal _UninterpretedOption_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern UninterpretedOptionDefaultTypeInternal _UninterpretedOption_default_instance_;
|
||||
class UninterpretedOption_NamePart;
|
||||
class UninterpretedOption_NamePartDefaultTypeInternal;
|
||||
extern UninterpretedOption_NamePartDefaultTypeInternal _UninterpretedOption_NamePart_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern UninterpretedOption_NamePartDefaultTypeInternal _UninterpretedOption_NamePart_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class Duration;
|
||||
class DurationDefaultTypeInternal;
|
||||
extern DurationDefaultTypeInternal _Duration_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern DurationDefaultTypeInternal _Duration_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class Empty;
|
||||
class EmptyDefaultTypeInternal;
|
||||
extern EmptyDefaultTypeInternal _Empty_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EmptyDefaultTypeInternal _Empty_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class FieldMask;
|
||||
class FieldMaskDefaultTypeInternal;
|
||||
extern FieldMaskDefaultTypeInternal _FieldMask_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FieldMaskDefaultTypeInternal _FieldMask_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class SourceContext;
|
||||
class SourceContextDefaultTypeInternal;
|
||||
extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -35,13 +35,13 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class ListValue;
|
||||
class ListValueDefaultTypeInternal;
|
||||
extern ListValueDefaultTypeInternal _ListValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern ListValueDefaultTypeInternal _ListValue_default_instance_;
|
||||
class Struct;
|
||||
class StructDefaultTypeInternal;
|
||||
extern StructDefaultTypeInternal _Struct_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern StructDefaultTypeInternal _Struct_default_instance_;
|
||||
class Value;
|
||||
class ValueDefaultTypeInternal;
|
||||
extern ValueDefaultTypeInternal _Value_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern ValueDefaultTypeInternal _Value_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -32,7 +32,7 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class Timestamp;
|
||||
class TimestampDefaultTypeInternal;
|
||||
extern TimestampDefaultTypeInternal _Timestamp_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern TimestampDefaultTypeInternal _Timestamp_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -35,25 +35,25 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class Any;
|
||||
class AnyDefaultTypeInternal;
|
||||
extern AnyDefaultTypeInternal _Any_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern AnyDefaultTypeInternal _Any_default_instance_;
|
||||
class Enum;
|
||||
class EnumDefaultTypeInternal;
|
||||
extern EnumDefaultTypeInternal _Enum_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumDefaultTypeInternal _Enum_default_instance_;
|
||||
class EnumValue;
|
||||
class EnumValueDefaultTypeInternal;
|
||||
extern EnumValueDefaultTypeInternal _EnumValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern EnumValueDefaultTypeInternal _EnumValue_default_instance_;
|
||||
class Field;
|
||||
class FieldDefaultTypeInternal;
|
||||
extern FieldDefaultTypeInternal _Field_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FieldDefaultTypeInternal _Field_default_instance_;
|
||||
class Option;
|
||||
class OptionDefaultTypeInternal;
|
||||
extern OptionDefaultTypeInternal _Option_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern OptionDefaultTypeInternal _Option_default_instance_;
|
||||
class SourceContext;
|
||||
class SourceContextDefaultTypeInternal;
|
||||
extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern SourceContextDefaultTypeInternal _SourceContext_default_instance_;
|
||||
class Type;
|
||||
class TypeDefaultTypeInternal;
|
||||
extern TypeDefaultTypeInternal _Type_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern TypeDefaultTypeInternal _Type_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
@ -32,31 +32,31 @@ namespace google {
|
||||
namespace protobuf {
|
||||
class BoolValue;
|
||||
class BoolValueDefaultTypeInternal;
|
||||
extern BoolValueDefaultTypeInternal _BoolValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern BoolValueDefaultTypeInternal _BoolValue_default_instance_;
|
||||
class BytesValue;
|
||||
class BytesValueDefaultTypeInternal;
|
||||
extern BytesValueDefaultTypeInternal _BytesValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern BytesValueDefaultTypeInternal _BytesValue_default_instance_;
|
||||
class DoubleValue;
|
||||
class DoubleValueDefaultTypeInternal;
|
||||
extern DoubleValueDefaultTypeInternal _DoubleValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern DoubleValueDefaultTypeInternal _DoubleValue_default_instance_;
|
||||
class FloatValue;
|
||||
class FloatValueDefaultTypeInternal;
|
||||
extern FloatValueDefaultTypeInternal _FloatValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern FloatValueDefaultTypeInternal _FloatValue_default_instance_;
|
||||
class Int32Value;
|
||||
class Int32ValueDefaultTypeInternal;
|
||||
extern Int32ValueDefaultTypeInternal _Int32Value_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern Int32ValueDefaultTypeInternal _Int32Value_default_instance_;
|
||||
class Int64Value;
|
||||
class Int64ValueDefaultTypeInternal;
|
||||
extern Int64ValueDefaultTypeInternal _Int64Value_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern Int64ValueDefaultTypeInternal _Int64Value_default_instance_;
|
||||
class StringValue;
|
||||
class StringValueDefaultTypeInternal;
|
||||
extern StringValueDefaultTypeInternal _StringValue_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern StringValueDefaultTypeInternal _StringValue_default_instance_;
|
||||
class UInt32Value;
|
||||
class UInt32ValueDefaultTypeInternal;
|
||||
extern UInt32ValueDefaultTypeInternal _UInt32Value_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern UInt32ValueDefaultTypeInternal _UInt32Value_default_instance_;
|
||||
class UInt64Value;
|
||||
class UInt64ValueDefaultTypeInternal;
|
||||
extern UInt64ValueDefaultTypeInternal _UInt64Value_default_instance_;
|
||||
LIBPROTOBUF_EXPORT extern UInt64ValueDefaultTypeInternal _UInt64Value_default_instance_;
|
||||
} // namespace protobuf
|
||||
} // namespace google
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user