|
@@ -434,6 +434,9 @@ class LIBPROTOBUF_EXPORT FileDescriptorProto : public ::google::protobuf::Messag
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -446,6 +449,9 @@ class LIBPROTOBUF_EXPORT FileDescriptorProto : public ::google::protobuf::Messag
|
|
|
static const int kPackageFieldNumber = 2;
|
|
|
const ::std::string& package() const;
|
|
|
void set_package(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_package(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_package(const char* value);
|
|
|
void set_package(const char* value, size_t size);
|
|
|
::std::string* mutable_package();
|
|
@@ -564,6 +570,9 @@ class LIBPROTOBUF_EXPORT FileDescriptorProto : public ::google::protobuf::Messag
|
|
|
static const int kSyntaxFieldNumber = 12;
|
|
|
const ::std::string& syntax() const;
|
|
|
void set_syntax(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_syntax(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_syntax(const char* value);
|
|
|
void set_syntax(const char* value, size_t size);
|
|
|
::std::string* mutable_syntax();
|
|
@@ -905,6 +914,9 @@ class LIBPROTOBUF_EXPORT DescriptorProto : public ::google::protobuf::Message /*
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1214,6 +1226,9 @@ class LIBPROTOBUF_EXPORT FieldDescriptorProto : public ::google::protobuf::Messa
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1247,6 +1262,9 @@ class LIBPROTOBUF_EXPORT FieldDescriptorProto : public ::google::protobuf::Messa
|
|
|
static const int kTypeNameFieldNumber = 6;
|
|
|
const ::std::string& type_name() const;
|
|
|
void set_type_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_type_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_type_name(const char* value);
|
|
|
void set_type_name(const char* value, size_t size);
|
|
|
::std::string* mutable_type_name();
|
|
@@ -1259,6 +1277,9 @@ class LIBPROTOBUF_EXPORT FieldDescriptorProto : public ::google::protobuf::Messa
|
|
|
static const int kExtendeeFieldNumber = 2;
|
|
|
const ::std::string& extendee() const;
|
|
|
void set_extendee(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_extendee(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_extendee(const char* value);
|
|
|
void set_extendee(const char* value, size_t size);
|
|
|
::std::string* mutable_extendee();
|
|
@@ -1271,6 +1292,9 @@ class LIBPROTOBUF_EXPORT FieldDescriptorProto : public ::google::protobuf::Messa
|
|
|
static const int kDefaultValueFieldNumber = 7;
|
|
|
const ::std::string& default_value() const;
|
|
|
void set_default_value(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_default_value(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_default_value(const char* value);
|
|
|
void set_default_value(const char* value, size_t size);
|
|
|
::std::string* mutable_default_value();
|
|
@@ -1290,6 +1314,9 @@ class LIBPROTOBUF_EXPORT FieldDescriptorProto : public ::google::protobuf::Messa
|
|
|
static const int kJsonNameFieldNumber = 10;
|
|
|
const ::std::string& json_name() const;
|
|
|
void set_json_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_json_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_json_name(const char* value);
|
|
|
void set_json_name(const char* value, size_t size);
|
|
|
::std::string* mutable_json_name();
|
|
@@ -1429,6 +1456,9 @@ class LIBPROTOBUF_EXPORT OneofDescriptorProto : public ::google::protobuf::Messa
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1544,6 +1574,9 @@ class LIBPROTOBUF_EXPORT EnumDescriptorProto : public ::google::protobuf::Messag
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1672,6 +1705,9 @@ class LIBPROTOBUF_EXPORT EnumValueDescriptorProto : public ::google::protobuf::M
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1797,6 +1833,9 @@ class LIBPROTOBUF_EXPORT ServiceDescriptorProto : public ::google::protobuf::Mes
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1925,6 +1964,9 @@ class LIBPROTOBUF_EXPORT MethodDescriptorProto : public ::google::protobuf::Mess
|
|
|
static const int kNameFieldNumber = 1;
|
|
|
const ::std::string& name() const;
|
|
|
void set_name(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name(const char* value);
|
|
|
void set_name(const char* value, size_t size);
|
|
|
::std::string* mutable_name();
|
|
@@ -1937,6 +1979,9 @@ class LIBPROTOBUF_EXPORT MethodDescriptorProto : public ::google::protobuf::Mess
|
|
|
static const int kInputTypeFieldNumber = 2;
|
|
|
const ::std::string& input_type() const;
|
|
|
void set_input_type(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_input_type(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_input_type(const char* value);
|
|
|
void set_input_type(const char* value, size_t size);
|
|
|
::std::string* mutable_input_type();
|
|
@@ -1949,6 +1994,9 @@ class LIBPROTOBUF_EXPORT MethodDescriptorProto : public ::google::protobuf::Mess
|
|
|
static const int kOutputTypeFieldNumber = 3;
|
|
|
const ::std::string& output_type() const;
|
|
|
void set_output_type(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_output_type(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_output_type(const char* value);
|
|
|
void set_output_type(const char* value, size_t size);
|
|
|
::std::string* mutable_output_type();
|
|
@@ -2118,6 +2166,9 @@ class LIBPROTOBUF_EXPORT FileOptions : public ::google::protobuf::Message /* @@p
|
|
|
static const int kJavaPackageFieldNumber = 1;
|
|
|
const ::std::string& java_package() const;
|
|
|
void set_java_package(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_java_package(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_java_package(const char* value);
|
|
|
void set_java_package(const char* value, size_t size);
|
|
|
::std::string* mutable_java_package();
|
|
@@ -2130,6 +2181,9 @@ class LIBPROTOBUF_EXPORT FileOptions : public ::google::protobuf::Message /* @@p
|
|
|
static const int kJavaOuterClassnameFieldNumber = 8;
|
|
|
const ::std::string& java_outer_classname() const;
|
|
|
void set_java_outer_classname(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_java_outer_classname(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_java_outer_classname(const char* value);
|
|
|
void set_java_outer_classname(const char* value, size_t size);
|
|
|
::std::string* mutable_java_outer_classname();
|
|
@@ -2170,6 +2224,9 @@ class LIBPROTOBUF_EXPORT FileOptions : public ::google::protobuf::Message /* @@p
|
|
|
static const int kGoPackageFieldNumber = 11;
|
|
|
const ::std::string& go_package() const;
|
|
|
void set_go_package(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_go_package(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_go_package(const char* value);
|
|
|
void set_go_package(const char* value, size_t size);
|
|
|
::std::string* mutable_go_package();
|
|
@@ -2217,6 +2274,9 @@ class LIBPROTOBUF_EXPORT FileOptions : public ::google::protobuf::Message /* @@p
|
|
|
static const int kObjcClassPrefixFieldNumber = 36;
|
|
|
const ::std::string& objc_class_prefix() const;
|
|
|
void set_objc_class_prefix(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_objc_class_prefix(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_objc_class_prefix(const char* value);
|
|
|
void set_objc_class_prefix(const char* value, size_t size);
|
|
|
::std::string* mutable_objc_class_prefix();
|
|
@@ -2229,6 +2289,9 @@ class LIBPROTOBUF_EXPORT FileOptions : public ::google::protobuf::Message /* @@p
|
|
|
static const int kCsharpNamespaceFieldNumber = 37;
|
|
|
const ::std::string& csharp_namespace() const;
|
|
|
void set_csharp_namespace(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_csharp_namespace(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_csharp_namespace(const char* value);
|
|
|
void set_csharp_namespace(const char* value, size_t size);
|
|
|
::std::string* mutable_csharp_namespace();
|
|
@@ -2241,6 +2304,9 @@ class LIBPROTOBUF_EXPORT FileOptions : public ::google::protobuf::Message /* @@p
|
|
|
static const int kSwiftPrefixFieldNumber = 39;
|
|
|
const ::std::string& swift_prefix() const;
|
|
|
void set_swift_prefix(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_swift_prefix(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_swift_prefix(const char* value);
|
|
|
void set_swift_prefix(const char* value, size_t size);
|
|
|
::std::string* mutable_swift_prefix();
|
|
@@ -3374,6 +3440,9 @@ class LIBPROTOBUF_EXPORT UninterpretedOption_NamePart : public ::google::protobu
|
|
|
static const int kNamePartFieldNumber = 1;
|
|
|
const ::std::string& name_part() const;
|
|
|
void set_name_part(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_name_part(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_name_part(const char* value);
|
|
|
void set_name_part(const char* value, size_t size);
|
|
|
::std::string* mutable_name_part();
|
|
@@ -3504,6 +3573,9 @@ class LIBPROTOBUF_EXPORT UninterpretedOption : public ::google::protobuf::Messag
|
|
|
static const int kIdentifierValueFieldNumber = 3;
|
|
|
const ::std::string& identifier_value() const;
|
|
|
void set_identifier_value(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_identifier_value(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_identifier_value(const char* value);
|
|
|
void set_identifier_value(const char* value, size_t size);
|
|
|
::std::string* mutable_identifier_value();
|
|
@@ -3537,6 +3609,9 @@ class LIBPROTOBUF_EXPORT UninterpretedOption : public ::google::protobuf::Messag
|
|
|
static const int kStringValueFieldNumber = 7;
|
|
|
const ::std::string& string_value() const;
|
|
|
void set_string_value(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_string_value(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_string_value(const char* value);
|
|
|
void set_string_value(const void* value, size_t size);
|
|
|
::std::string* mutable_string_value();
|
|
@@ -3549,6 +3624,9 @@ class LIBPROTOBUF_EXPORT UninterpretedOption : public ::google::protobuf::Messag
|
|
|
static const int kAggregateValueFieldNumber = 8;
|
|
|
const ::std::string& aggregate_value() const;
|
|
|
void set_aggregate_value(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_aggregate_value(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_aggregate_value(const char* value);
|
|
|
void set_aggregate_value(const char* value, size_t size);
|
|
|
::std::string* mutable_aggregate_value();
|
|
@@ -3692,6 +3770,9 @@ class LIBPROTOBUF_EXPORT SourceCodeInfo_Location : public ::google::protobuf::Me
|
|
|
static const int kLeadingCommentsFieldNumber = 3;
|
|
|
const ::std::string& leading_comments() const;
|
|
|
void set_leading_comments(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_leading_comments(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_leading_comments(const char* value);
|
|
|
void set_leading_comments(const char* value, size_t size);
|
|
|
::std::string* mutable_leading_comments();
|
|
@@ -3704,6 +3785,9 @@ class LIBPROTOBUF_EXPORT SourceCodeInfo_Location : public ::google::protobuf::Me
|
|
|
static const int kTrailingCommentsFieldNumber = 4;
|
|
|
const ::std::string& trailing_comments() const;
|
|
|
void set_trailing_comments(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_trailing_comments(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_trailing_comments(const char* value);
|
|
|
void set_trailing_comments(const char* value, size_t size);
|
|
|
::std::string* mutable_trailing_comments();
|
|
@@ -3946,6 +4030,9 @@ class LIBPROTOBUF_EXPORT GeneratedCodeInfo_Annotation : public ::google::protobu
|
|
|
static const int kSourceFileFieldNumber = 2;
|
|
|
const ::std::string& source_file() const;
|
|
|
void set_source_file(const ::std::string& value);
|
|
|
+ #if LANG_CXX11
|
|
|
+ void set_source_file(::std::string&& value);
|
|
|
+ #endif
|
|
|
void set_source_file(const char* value);
|
|
|
void set_source_file(const char* value, size_t size);
|
|
|
::std::string* mutable_source_file();
|
|
@@ -4157,6 +4244,14 @@ inline void FileDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -4211,6 +4306,14 @@ inline void FileDescriptorProto::set_package(const ::std::string& value) {
|
|
|
package_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileDescriptorProto.package)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileDescriptorProto::set_package(::std::string&& value) {
|
|
|
+ set_has_package();
|
|
|
+ package_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileDescriptorProto.package)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileDescriptorProto::set_package(const char* value) {
|
|
|
set_has_package();
|
|
|
package_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -4590,6 +4693,14 @@ inline void FileDescriptorProto::set_syntax(const ::std::string& value) {
|
|
|
syntax_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileDescriptorProto.syntax)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileDescriptorProto::set_syntax(::std::string&& value) {
|
|
|
+ set_has_syntax();
|
|
|
+ syntax_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileDescriptorProto.syntax)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileDescriptorProto::set_syntax(const char* value) {
|
|
|
set_has_syntax();
|
|
|
syntax_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -4752,6 +4863,14 @@ inline void DescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.DescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void DescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.DescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void DescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5120,6 +5239,14 @@ inline void FieldDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FieldDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FieldDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FieldDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FieldDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5248,6 +5375,14 @@ inline void FieldDescriptorProto::set_type_name(const ::std::string& value) {
|
|
|
type_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FieldDescriptorProto.type_name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FieldDescriptorProto::set_type_name(::std::string&& value) {
|
|
|
+ set_has_type_name();
|
|
|
+ type_name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FieldDescriptorProto.type_name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FieldDescriptorProto::set_type_name(const char* value) {
|
|
|
set_has_type_name();
|
|
|
type_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5302,6 +5437,14 @@ inline void FieldDescriptorProto::set_extendee(const ::std::string& value) {
|
|
|
extendee_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FieldDescriptorProto.extendee)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FieldDescriptorProto::set_extendee(::std::string&& value) {
|
|
|
+ set_has_extendee();
|
|
|
+ extendee_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FieldDescriptorProto.extendee)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FieldDescriptorProto::set_extendee(const char* value) {
|
|
|
set_has_extendee();
|
|
|
extendee_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5356,6 +5499,14 @@ inline void FieldDescriptorProto::set_default_value(const ::std::string& value)
|
|
|
default_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FieldDescriptorProto.default_value)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FieldDescriptorProto::set_default_value(::std::string&& value) {
|
|
|
+ set_has_default_value();
|
|
|
+ default_value_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FieldDescriptorProto.default_value)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FieldDescriptorProto::set_default_value(const char* value) {
|
|
|
set_has_default_value();
|
|
|
default_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5434,6 +5585,14 @@ inline void FieldDescriptorProto::set_json_name(const ::std::string& value) {
|
|
|
json_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FieldDescriptorProto.json_name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FieldDescriptorProto::set_json_name(::std::string&& value) {
|
|
|
+ set_has_json_name();
|
|
|
+ json_name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FieldDescriptorProto.json_name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FieldDescriptorProto::set_json_name(const char* value) {
|
|
|
set_has_json_name();
|
|
|
json_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5537,6 +5696,14 @@ inline void OneofDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.OneofDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void OneofDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.OneofDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void OneofDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5640,6 +5807,14 @@ inline void EnumDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.EnumDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void EnumDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.EnumDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void EnumDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5773,6 +5948,14 @@ inline void EnumValueDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.EnumValueDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void EnumValueDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.EnumValueDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void EnumValueDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -5900,6 +6083,14 @@ inline void ServiceDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.ServiceDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void ServiceDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.ServiceDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void ServiceDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6033,6 +6224,14 @@ inline void MethodDescriptorProto::set_name(const ::std::string& value) {
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.MethodDescriptorProto.name)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void MethodDescriptorProto::set_name(::std::string&& value) {
|
|
|
+ set_has_name();
|
|
|
+ name_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.MethodDescriptorProto.name)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void MethodDescriptorProto::set_name(const char* value) {
|
|
|
set_has_name();
|
|
|
name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6087,6 +6286,14 @@ inline void MethodDescriptorProto::set_input_type(const ::std::string& value) {
|
|
|
input_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.MethodDescriptorProto.input_type)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void MethodDescriptorProto::set_input_type(::std::string&& value) {
|
|
|
+ set_has_input_type();
|
|
|
+ input_type_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.MethodDescriptorProto.input_type)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void MethodDescriptorProto::set_input_type(const char* value) {
|
|
|
set_has_input_type();
|
|
|
input_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6141,6 +6348,14 @@ inline void MethodDescriptorProto::set_output_type(const ::std::string& value) {
|
|
|
output_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.MethodDescriptorProto.output_type)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void MethodDescriptorProto::set_output_type(::std::string&& value) {
|
|
|
+ set_has_output_type();
|
|
|
+ output_type_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.MethodDescriptorProto.output_type)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void MethodDescriptorProto::set_output_type(const char* value) {
|
|
|
set_has_output_type();
|
|
|
output_type_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6292,6 +6507,14 @@ inline void FileOptions::set_java_package(const ::std::string& value) {
|
|
|
java_package_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileOptions.java_package)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileOptions::set_java_package(::std::string&& value) {
|
|
|
+ set_has_java_package();
|
|
|
+ java_package_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileOptions.java_package)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileOptions::set_java_package(const char* value) {
|
|
|
set_has_java_package();
|
|
|
java_package_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6346,6 +6569,14 @@ inline void FileOptions::set_java_outer_classname(const ::std::string& value) {
|
|
|
java_outer_classname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileOptions.java_outer_classname)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileOptions::set_java_outer_classname(::std::string&& value) {
|
|
|
+ set_has_java_outer_classname();
|
|
|
+ java_outer_classname_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileOptions.java_outer_classname)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileOptions::set_java_outer_classname(const char* value) {
|
|
|
set_has_java_outer_classname();
|
|
|
java_outer_classname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6497,6 +6728,14 @@ inline void FileOptions::set_go_package(const ::std::string& value) {
|
|
|
go_package_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileOptions.go_package)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileOptions::set_go_package(::std::string&& value) {
|
|
|
+ set_has_go_package();
|
|
|
+ go_package_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileOptions.go_package)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileOptions::set_go_package(const char* value) {
|
|
|
set_has_go_package();
|
|
|
go_package_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6671,6 +6910,14 @@ inline void FileOptions::set_objc_class_prefix(const ::std::string& value) {
|
|
|
objc_class_prefix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileOptions.objc_class_prefix)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileOptions::set_objc_class_prefix(::std::string&& value) {
|
|
|
+ set_has_objc_class_prefix();
|
|
|
+ objc_class_prefix_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileOptions.objc_class_prefix)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileOptions::set_objc_class_prefix(const char* value) {
|
|
|
set_has_objc_class_prefix();
|
|
|
objc_class_prefix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6725,6 +6972,14 @@ inline void FileOptions::set_csharp_namespace(const ::std::string& value) {
|
|
|
csharp_namespace_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileOptions.csharp_namespace)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileOptions::set_csharp_namespace(::std::string&& value) {
|
|
|
+ set_has_csharp_namespace();
|
|
|
+ csharp_namespace_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileOptions.csharp_namespace)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileOptions::set_csharp_namespace(const char* value) {
|
|
|
set_has_csharp_namespace();
|
|
|
csharp_namespace_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -6779,6 +7034,14 @@ inline void FileOptions::set_swift_prefix(const ::std::string& value) {
|
|
|
swift_prefix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.FileOptions.swift_prefix)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void FileOptions::set_swift_prefix(::std::string&& value) {
|
|
|
+ set_has_swift_prefix();
|
|
|
+ swift_prefix_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.FileOptions.swift_prefix)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void FileOptions::set_swift_prefix(const char* value) {
|
|
|
set_has_swift_prefix();
|
|
|
swift_prefix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -7492,6 +7755,14 @@ inline void UninterpretedOption_NamePart::set_name_part(const ::std::string& val
|
|
|
name_part_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.UninterpretedOption.NamePart.name_part)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void UninterpretedOption_NamePart::set_name_part(::std::string&& value) {
|
|
|
+ set_has_name_part();
|
|
|
+ name_part_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.UninterpretedOption.NamePart.name_part)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void UninterpretedOption_NamePart::set_name_part(const char* value) {
|
|
|
set_has_name_part();
|
|
|
name_part_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -7604,6 +7875,14 @@ inline void UninterpretedOption::set_identifier_value(const ::std::string& value
|
|
|
identifier_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.UninterpretedOption.identifier_value)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void UninterpretedOption::set_identifier_value(::std::string&& value) {
|
|
|
+ set_has_identifier_value();
|
|
|
+ identifier_value_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.UninterpretedOption.identifier_value)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void UninterpretedOption::set_identifier_value(const char* value) {
|
|
|
set_has_identifier_value();
|
|
|
identifier_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -7730,6 +8009,14 @@ inline void UninterpretedOption::set_string_value(const ::std::string& value) {
|
|
|
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.UninterpretedOption.string_value)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void UninterpretedOption::set_string_value(::std::string&& value) {
|
|
|
+ set_has_string_value();
|
|
|
+ string_value_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.UninterpretedOption.string_value)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void UninterpretedOption::set_string_value(const char* value) {
|
|
|
set_has_string_value();
|
|
|
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -7784,6 +8071,14 @@ inline void UninterpretedOption::set_aggregate_value(const ::std::string& value)
|
|
|
aggregate_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.UninterpretedOption.aggregate_value)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void UninterpretedOption::set_aggregate_value(::std::string&& value) {
|
|
|
+ set_has_aggregate_value();
|
|
|
+ aggregate_value_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.UninterpretedOption.aggregate_value)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void UninterpretedOption::set_aggregate_value(const char* value) {
|
|
|
set_has_aggregate_value();
|
|
|
aggregate_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -7902,6 +8197,14 @@ inline void SourceCodeInfo_Location::set_leading_comments(const ::std::string& v
|
|
|
leading_comments_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.SourceCodeInfo.Location.leading_comments)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void SourceCodeInfo_Location::set_leading_comments(::std::string&& value) {
|
|
|
+ set_has_leading_comments();
|
|
|
+ leading_comments_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.SourceCodeInfo.Location.leading_comments)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void SourceCodeInfo_Location::set_leading_comments(const char* value) {
|
|
|
set_has_leading_comments();
|
|
|
leading_comments_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -7956,6 +8259,14 @@ inline void SourceCodeInfo_Location::set_trailing_comments(const ::std::string&
|
|
|
trailing_comments_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.SourceCodeInfo.Location.trailing_comments)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void SourceCodeInfo_Location::set_trailing_comments(::std::string&& value) {
|
|
|
+ set_has_trailing_comments();
|
|
|
+ trailing_comments_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.SourceCodeInfo.Location.trailing_comments)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void SourceCodeInfo_Location::set_trailing_comments(const char* value) {
|
|
|
set_has_trailing_comments();
|
|
|
trailing_comments_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|
|
@@ -8133,6 +8444,14 @@ inline void GeneratedCodeInfo_Annotation::set_source_file(const ::std::string& v
|
|
|
source_file_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
|
|
|
// @@protoc_insertion_point(field_set:google.protobuf.GeneratedCodeInfo.Annotation.source_file)
|
|
|
}
|
|
|
+#if LANG_CXX11
|
|
|
+inline void GeneratedCodeInfo_Annotation::set_source_file(::std::string&& value) {
|
|
|
+ set_has_source_file();
|
|
|
+ source_file_.SetNoArena(
|
|
|
+ &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
|
|
|
+ // @@protoc_insertion_point(field_set_rvalue:google.protobuf.GeneratedCodeInfo.Annotation.source_file)
|
|
|
+}
|
|
|
+#endif
|
|
|
inline void GeneratedCodeInfo_Annotation::set_source_file(const char* value) {
|
|
|
set_has_source_file();
|
|
|
source_file_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
|