Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
4474c042
Commit
4474c042
authored
Dec 08, 2016
by
Feng Xiao
Committed by
GitHub
Dec 08, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2462 from jbrianceau/fix-comp-builds-part2
C++: export _xxx_default_instance_ symbols
parents
6b4eee40
e219be74
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
94 additions
and
91 deletions
+94
-91
any.pb.h
src/google/protobuf/any.pb.h
+1
-1
api.pb.h
src/google/protobuf/api.pb.h
+9
-9
cpp_file.cc
src/google/protobuf/compiler/cpp/cpp_file.cc
+6
-3
plugin.pb.h
src/google/protobuf/compiler/plugin.pb.h
+29
-29
descriptor.pb.h
src/google/protobuf/descriptor.pb.h
+25
-25
duration.pb.h
src/google/protobuf/duration.pb.h
+1
-1
empty.pb.h
src/google/protobuf/empty.pb.h
+1
-1
field_mask.pb.h
src/google/protobuf/field_mask.pb.h
+1
-1
source_context.pb.h
src/google/protobuf/source_context.pb.h
+1
-1
struct.pb.h
src/google/protobuf/struct.pb.h
+3
-3
timestamp.pb.h
src/google/protobuf/timestamp.pb.h
+1
-1
type.pb.h
src/google/protobuf/type.pb.h
+7
-7
wrappers.pb.h
src/google/protobuf/wrappers.pb.h
+9
-9
No files found.
src/google/protobuf/any.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/api.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/compiler/cpp/cpp_file.cc
View file @
4474c042
...
...
@@ -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
)
{
...
...
src/google/protobuf/compiler/plugin.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/descriptor.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/duration.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/empty.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/field_mask.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/source_context.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/struct.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/timestamp.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/type.pb.h
View file @
4474c042
...
...
@@ -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
...
...
src/google/protobuf/wrappers.pb.h
View file @
4474c042
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment