1 // Generated by the protocol buffer compiler. DO NOT EDIT!
2 // source: google/protobuf/wrappers.proto
3
4 #ifndef PROTOBUF_google_2fprotobuf_2fwrappers_2eproto__INCLUDED
5 #define PROTOBUF_google_2fprotobuf_2fwrappers_2eproto__INCLUDED
6
7 #include <string>
8
9 #include <google/protobuf/stubs/common.h>
10
11 #if GOOGLE_PROTOBUF_VERSION < 3000000
12 #error This file was generated by a newer version of protoc which is
13 #error incompatible with your Protocol Buffer headers. Please update
14 #error your headers.
15 #endif
16 #if 3000000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
17 #error This file was generated by an older version of protoc which is
18 #error incompatible with your Protocol Buffer headers. Please
19 #error regenerate this file with a newer version of protoc.
20 #endif
21
22 #include <google/protobuf/arena.h>
23 #include <google/protobuf/arenastring.h>
24 #include <google/protobuf/generated_message_util.h>
25 #include <google/protobuf/metadata.h>
26 #include <google/protobuf/message.h>
27 #include <google/protobuf/repeated_field.h>
28 #include <google/protobuf/extension_set.h>
29 #include <google/protobuf/unknown_field_set.h>
30 // @@protoc_insertion_point(includes)
31
32 namespace google {
33 namespace protobuf {
34
35 // Internal implementation detail -- do not call these.
36 void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
37 void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
38 void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
39
40 class BoolValue;
41 class BytesValue;
42 class DoubleValue;
43 class FloatValue;
44 class Int32Value;
45 class Int64Value;
46 class StringValue;
47 class UInt32Value;
48 class UInt64Value;
49
50 // ===================================================================
51
52 class LIBPROTOBUF_EXPORT DoubleValue : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.DoubleValue) */ {
53 public:
54 DoubleValue();
55 virtual ~DoubleValue();
56
57 DoubleValue(const DoubleValue& from);
58
59 inline DoubleValue& operator=(const DoubleValue& from) {
60 CopyFrom(from);
61 return *this;
62 }
63
GetArena()64 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()65 inline void* GetMaybeArenaPointer() const {
66 return MaybeArenaPtr();
67 }
68 static const ::google::protobuf::Descriptor* descriptor();
69 static const DoubleValue& default_instance();
70
71 void UnsafeArenaSwap(DoubleValue* other);
72 void Swap(DoubleValue* other);
73
74 // implements Message ----------------------------------------------
75
New()76 inline DoubleValue* New() const { return New(NULL); }
77
78 DoubleValue* New(::google::protobuf::Arena* arena) const;
79 void CopyFrom(const ::google::protobuf::Message& from);
80 void MergeFrom(const ::google::protobuf::Message& from);
81 void CopyFrom(const DoubleValue& from);
82 void MergeFrom(const DoubleValue& from);
83 void Clear();
84 bool IsInitialized() const;
85
86 int ByteSize() const;
87 bool MergePartialFromCodedStream(
88 ::google::protobuf::io::CodedInputStream* input);
89 void SerializeWithCachedSizes(
90 ::google::protobuf::io::CodedOutputStream* output) const;
91 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
92 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)93 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
94 return InternalSerializeWithCachedSizesToArray(false, output);
95 }
GetCachedSize()96 int GetCachedSize() const { return _cached_size_; }
97 private:
98 void SharedCtor();
99 void SharedDtor();
100 void SetCachedSize(int size) const;
101 void InternalSwap(DoubleValue* other);
102 protected:
103 explicit DoubleValue(::google::protobuf::Arena* arena);
104 private:
105 static void ArenaDtor(void* object);
106 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
107 private:
GetArenaNoVirtual()108 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
109 return _internal_metadata_.arena();
110 }
MaybeArenaPtr()111 inline void* MaybeArenaPtr() const {
112 return _internal_metadata_.raw_arena_ptr();
113 }
114 public:
115
116 ::google::protobuf::Metadata GetMetadata() const;
117
118 // nested types ----------------------------------------------------
119
120 // accessors -------------------------------------------------------
121
122 // optional double value = 1;
123 void clear_value();
124 static const int kValueFieldNumber = 1;
125 double value() const;
126 void set_value(double value);
127
128 // @@protoc_insertion_point(class_scope:google.protobuf.DoubleValue)
129 private:
130
131 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
132 friend class ::google::protobuf::Arena;
133 typedef void InternalArenaConstructable_;
134 typedef void DestructorSkippable_;
135 bool _is_default_instance_;
136 double value_;
137 mutable int _cached_size_;
138 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
139 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
140 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
141
142 void InitAsDefaultInstance();
143 static DoubleValue* default_instance_;
144 };
145 // -------------------------------------------------------------------
146
147 class LIBPROTOBUF_EXPORT FloatValue : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.FloatValue) */ {
148 public:
149 FloatValue();
150 virtual ~FloatValue();
151
152 FloatValue(const FloatValue& from);
153
154 inline FloatValue& operator=(const FloatValue& from) {
155 CopyFrom(from);
156 return *this;
157 }
158
GetArena()159 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()160 inline void* GetMaybeArenaPointer() const {
161 return MaybeArenaPtr();
162 }
163 static const ::google::protobuf::Descriptor* descriptor();
164 static const FloatValue& default_instance();
165
166 void UnsafeArenaSwap(FloatValue* other);
167 void Swap(FloatValue* other);
168
169 // implements Message ----------------------------------------------
170
New()171 inline FloatValue* New() const { return New(NULL); }
172
173 FloatValue* New(::google::protobuf::Arena* arena) const;
174 void CopyFrom(const ::google::protobuf::Message& from);
175 void MergeFrom(const ::google::protobuf::Message& from);
176 void CopyFrom(const FloatValue& from);
177 void MergeFrom(const FloatValue& from);
178 void Clear();
179 bool IsInitialized() const;
180
181 int ByteSize() const;
182 bool MergePartialFromCodedStream(
183 ::google::protobuf::io::CodedInputStream* input);
184 void SerializeWithCachedSizes(
185 ::google::protobuf::io::CodedOutputStream* output) const;
186 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
187 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)188 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
189 return InternalSerializeWithCachedSizesToArray(false, output);
190 }
GetCachedSize()191 int GetCachedSize() const { return _cached_size_; }
192 private:
193 void SharedCtor();
194 void SharedDtor();
195 void SetCachedSize(int size) const;
196 void InternalSwap(FloatValue* other);
197 protected:
198 explicit FloatValue(::google::protobuf::Arena* arena);
199 private:
200 static void ArenaDtor(void* object);
201 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
202 private:
GetArenaNoVirtual()203 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
204 return _internal_metadata_.arena();
205 }
MaybeArenaPtr()206 inline void* MaybeArenaPtr() const {
207 return _internal_metadata_.raw_arena_ptr();
208 }
209 public:
210
211 ::google::protobuf::Metadata GetMetadata() const;
212
213 // nested types ----------------------------------------------------
214
215 // accessors -------------------------------------------------------
216
217 // optional float value = 1;
218 void clear_value();
219 static const int kValueFieldNumber = 1;
220 float value() const;
221 void set_value(float value);
222
223 // @@protoc_insertion_point(class_scope:google.protobuf.FloatValue)
224 private:
225
226 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
227 friend class ::google::protobuf::Arena;
228 typedef void InternalArenaConstructable_;
229 typedef void DestructorSkippable_;
230 bool _is_default_instance_;
231 float value_;
232 mutable int _cached_size_;
233 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
234 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
235 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
236
237 void InitAsDefaultInstance();
238 static FloatValue* default_instance_;
239 };
240 // -------------------------------------------------------------------
241
242 class LIBPROTOBUF_EXPORT Int64Value : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.Int64Value) */ {
243 public:
244 Int64Value();
245 virtual ~Int64Value();
246
247 Int64Value(const Int64Value& from);
248
249 inline Int64Value& operator=(const Int64Value& from) {
250 CopyFrom(from);
251 return *this;
252 }
253
GetArena()254 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()255 inline void* GetMaybeArenaPointer() const {
256 return MaybeArenaPtr();
257 }
258 static const ::google::protobuf::Descriptor* descriptor();
259 static const Int64Value& default_instance();
260
261 void UnsafeArenaSwap(Int64Value* other);
262 void Swap(Int64Value* other);
263
264 // implements Message ----------------------------------------------
265
New()266 inline Int64Value* New() const { return New(NULL); }
267
268 Int64Value* New(::google::protobuf::Arena* arena) const;
269 void CopyFrom(const ::google::protobuf::Message& from);
270 void MergeFrom(const ::google::protobuf::Message& from);
271 void CopyFrom(const Int64Value& from);
272 void MergeFrom(const Int64Value& from);
273 void Clear();
274 bool IsInitialized() const;
275
276 int ByteSize() const;
277 bool MergePartialFromCodedStream(
278 ::google::protobuf::io::CodedInputStream* input);
279 void SerializeWithCachedSizes(
280 ::google::protobuf::io::CodedOutputStream* output) const;
281 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
282 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)283 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
284 return InternalSerializeWithCachedSizesToArray(false, output);
285 }
GetCachedSize()286 int GetCachedSize() const { return _cached_size_; }
287 private:
288 void SharedCtor();
289 void SharedDtor();
290 void SetCachedSize(int size) const;
291 void InternalSwap(Int64Value* other);
292 protected:
293 explicit Int64Value(::google::protobuf::Arena* arena);
294 private:
295 static void ArenaDtor(void* object);
296 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
297 private:
GetArenaNoVirtual()298 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
299 return _internal_metadata_.arena();
300 }
MaybeArenaPtr()301 inline void* MaybeArenaPtr() const {
302 return _internal_metadata_.raw_arena_ptr();
303 }
304 public:
305
306 ::google::protobuf::Metadata GetMetadata() const;
307
308 // nested types ----------------------------------------------------
309
310 // accessors -------------------------------------------------------
311
312 // optional int64 value = 1;
313 void clear_value();
314 static const int kValueFieldNumber = 1;
315 ::google::protobuf::int64 value() const;
316 void set_value(::google::protobuf::int64 value);
317
318 // @@protoc_insertion_point(class_scope:google.protobuf.Int64Value)
319 private:
320
321 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
322 friend class ::google::protobuf::Arena;
323 typedef void InternalArenaConstructable_;
324 typedef void DestructorSkippable_;
325 bool _is_default_instance_;
326 ::google::protobuf::int64 value_;
327 mutable int _cached_size_;
328 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
329 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
330 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
331
332 void InitAsDefaultInstance();
333 static Int64Value* default_instance_;
334 };
335 // -------------------------------------------------------------------
336
337 class LIBPROTOBUF_EXPORT UInt64Value : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.UInt64Value) */ {
338 public:
339 UInt64Value();
340 virtual ~UInt64Value();
341
342 UInt64Value(const UInt64Value& from);
343
344 inline UInt64Value& operator=(const UInt64Value& from) {
345 CopyFrom(from);
346 return *this;
347 }
348
GetArena()349 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()350 inline void* GetMaybeArenaPointer() const {
351 return MaybeArenaPtr();
352 }
353 static const ::google::protobuf::Descriptor* descriptor();
354 static const UInt64Value& default_instance();
355
356 void UnsafeArenaSwap(UInt64Value* other);
357 void Swap(UInt64Value* other);
358
359 // implements Message ----------------------------------------------
360
New()361 inline UInt64Value* New() const { return New(NULL); }
362
363 UInt64Value* New(::google::protobuf::Arena* arena) const;
364 void CopyFrom(const ::google::protobuf::Message& from);
365 void MergeFrom(const ::google::protobuf::Message& from);
366 void CopyFrom(const UInt64Value& from);
367 void MergeFrom(const UInt64Value& from);
368 void Clear();
369 bool IsInitialized() const;
370
371 int ByteSize() const;
372 bool MergePartialFromCodedStream(
373 ::google::protobuf::io::CodedInputStream* input);
374 void SerializeWithCachedSizes(
375 ::google::protobuf::io::CodedOutputStream* output) const;
376 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
377 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)378 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
379 return InternalSerializeWithCachedSizesToArray(false, output);
380 }
GetCachedSize()381 int GetCachedSize() const { return _cached_size_; }
382 private:
383 void SharedCtor();
384 void SharedDtor();
385 void SetCachedSize(int size) const;
386 void InternalSwap(UInt64Value* other);
387 protected:
388 explicit UInt64Value(::google::protobuf::Arena* arena);
389 private:
390 static void ArenaDtor(void* object);
391 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
392 private:
GetArenaNoVirtual()393 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
394 return _internal_metadata_.arena();
395 }
MaybeArenaPtr()396 inline void* MaybeArenaPtr() const {
397 return _internal_metadata_.raw_arena_ptr();
398 }
399 public:
400
401 ::google::protobuf::Metadata GetMetadata() const;
402
403 // nested types ----------------------------------------------------
404
405 // accessors -------------------------------------------------------
406
407 // optional uint64 value = 1;
408 void clear_value();
409 static const int kValueFieldNumber = 1;
410 ::google::protobuf::uint64 value() const;
411 void set_value(::google::protobuf::uint64 value);
412
413 // @@protoc_insertion_point(class_scope:google.protobuf.UInt64Value)
414 private:
415
416 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
417 friend class ::google::protobuf::Arena;
418 typedef void InternalArenaConstructable_;
419 typedef void DestructorSkippable_;
420 bool _is_default_instance_;
421 ::google::protobuf::uint64 value_;
422 mutable int _cached_size_;
423 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
424 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
425 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
426
427 void InitAsDefaultInstance();
428 static UInt64Value* default_instance_;
429 };
430 // -------------------------------------------------------------------
431
432 class LIBPROTOBUF_EXPORT Int32Value : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.Int32Value) */ {
433 public:
434 Int32Value();
435 virtual ~Int32Value();
436
437 Int32Value(const Int32Value& from);
438
439 inline Int32Value& operator=(const Int32Value& from) {
440 CopyFrom(from);
441 return *this;
442 }
443
GetArena()444 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()445 inline void* GetMaybeArenaPointer() const {
446 return MaybeArenaPtr();
447 }
448 static const ::google::protobuf::Descriptor* descriptor();
449 static const Int32Value& default_instance();
450
451 void UnsafeArenaSwap(Int32Value* other);
452 void Swap(Int32Value* other);
453
454 // implements Message ----------------------------------------------
455
New()456 inline Int32Value* New() const { return New(NULL); }
457
458 Int32Value* New(::google::protobuf::Arena* arena) const;
459 void CopyFrom(const ::google::protobuf::Message& from);
460 void MergeFrom(const ::google::protobuf::Message& from);
461 void CopyFrom(const Int32Value& from);
462 void MergeFrom(const Int32Value& from);
463 void Clear();
464 bool IsInitialized() const;
465
466 int ByteSize() const;
467 bool MergePartialFromCodedStream(
468 ::google::protobuf::io::CodedInputStream* input);
469 void SerializeWithCachedSizes(
470 ::google::protobuf::io::CodedOutputStream* output) const;
471 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
472 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)473 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
474 return InternalSerializeWithCachedSizesToArray(false, output);
475 }
GetCachedSize()476 int GetCachedSize() const { return _cached_size_; }
477 private:
478 void SharedCtor();
479 void SharedDtor();
480 void SetCachedSize(int size) const;
481 void InternalSwap(Int32Value* other);
482 protected:
483 explicit Int32Value(::google::protobuf::Arena* arena);
484 private:
485 static void ArenaDtor(void* object);
486 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
487 private:
GetArenaNoVirtual()488 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
489 return _internal_metadata_.arena();
490 }
MaybeArenaPtr()491 inline void* MaybeArenaPtr() const {
492 return _internal_metadata_.raw_arena_ptr();
493 }
494 public:
495
496 ::google::protobuf::Metadata GetMetadata() const;
497
498 // nested types ----------------------------------------------------
499
500 // accessors -------------------------------------------------------
501
502 // optional int32 value = 1;
503 void clear_value();
504 static const int kValueFieldNumber = 1;
505 ::google::protobuf::int32 value() const;
506 void set_value(::google::protobuf::int32 value);
507
508 // @@protoc_insertion_point(class_scope:google.protobuf.Int32Value)
509 private:
510
511 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
512 friend class ::google::protobuf::Arena;
513 typedef void InternalArenaConstructable_;
514 typedef void DestructorSkippable_;
515 bool _is_default_instance_;
516 ::google::protobuf::int32 value_;
517 mutable int _cached_size_;
518 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
519 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
520 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
521
522 void InitAsDefaultInstance();
523 static Int32Value* default_instance_;
524 };
525 // -------------------------------------------------------------------
526
527 class LIBPROTOBUF_EXPORT UInt32Value : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.UInt32Value) */ {
528 public:
529 UInt32Value();
530 virtual ~UInt32Value();
531
532 UInt32Value(const UInt32Value& from);
533
534 inline UInt32Value& operator=(const UInt32Value& from) {
535 CopyFrom(from);
536 return *this;
537 }
538
GetArena()539 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()540 inline void* GetMaybeArenaPointer() const {
541 return MaybeArenaPtr();
542 }
543 static const ::google::protobuf::Descriptor* descriptor();
544 static const UInt32Value& default_instance();
545
546 void UnsafeArenaSwap(UInt32Value* other);
547 void Swap(UInt32Value* other);
548
549 // implements Message ----------------------------------------------
550
New()551 inline UInt32Value* New() const { return New(NULL); }
552
553 UInt32Value* New(::google::protobuf::Arena* arena) const;
554 void CopyFrom(const ::google::protobuf::Message& from);
555 void MergeFrom(const ::google::protobuf::Message& from);
556 void CopyFrom(const UInt32Value& from);
557 void MergeFrom(const UInt32Value& from);
558 void Clear();
559 bool IsInitialized() const;
560
561 int ByteSize() const;
562 bool MergePartialFromCodedStream(
563 ::google::protobuf::io::CodedInputStream* input);
564 void SerializeWithCachedSizes(
565 ::google::protobuf::io::CodedOutputStream* output) const;
566 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
567 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)568 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
569 return InternalSerializeWithCachedSizesToArray(false, output);
570 }
GetCachedSize()571 int GetCachedSize() const { return _cached_size_; }
572 private:
573 void SharedCtor();
574 void SharedDtor();
575 void SetCachedSize(int size) const;
576 void InternalSwap(UInt32Value* other);
577 protected:
578 explicit UInt32Value(::google::protobuf::Arena* arena);
579 private:
580 static void ArenaDtor(void* object);
581 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
582 private:
GetArenaNoVirtual()583 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
584 return _internal_metadata_.arena();
585 }
MaybeArenaPtr()586 inline void* MaybeArenaPtr() const {
587 return _internal_metadata_.raw_arena_ptr();
588 }
589 public:
590
591 ::google::protobuf::Metadata GetMetadata() const;
592
593 // nested types ----------------------------------------------------
594
595 // accessors -------------------------------------------------------
596
597 // optional uint32 value = 1;
598 void clear_value();
599 static const int kValueFieldNumber = 1;
600 ::google::protobuf::uint32 value() const;
601 void set_value(::google::protobuf::uint32 value);
602
603 // @@protoc_insertion_point(class_scope:google.protobuf.UInt32Value)
604 private:
605
606 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
607 friend class ::google::protobuf::Arena;
608 typedef void InternalArenaConstructable_;
609 typedef void DestructorSkippable_;
610 bool _is_default_instance_;
611 ::google::protobuf::uint32 value_;
612 mutable int _cached_size_;
613 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
614 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
615 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
616
617 void InitAsDefaultInstance();
618 static UInt32Value* default_instance_;
619 };
620 // -------------------------------------------------------------------
621
622 class LIBPROTOBUF_EXPORT BoolValue : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.BoolValue) */ {
623 public:
624 BoolValue();
625 virtual ~BoolValue();
626
627 BoolValue(const BoolValue& from);
628
629 inline BoolValue& operator=(const BoolValue& from) {
630 CopyFrom(from);
631 return *this;
632 }
633
GetArena()634 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()635 inline void* GetMaybeArenaPointer() const {
636 return MaybeArenaPtr();
637 }
638 static const ::google::protobuf::Descriptor* descriptor();
639 static const BoolValue& default_instance();
640
641 void UnsafeArenaSwap(BoolValue* other);
642 void Swap(BoolValue* other);
643
644 // implements Message ----------------------------------------------
645
New()646 inline BoolValue* New() const { return New(NULL); }
647
648 BoolValue* New(::google::protobuf::Arena* arena) const;
649 void CopyFrom(const ::google::protobuf::Message& from);
650 void MergeFrom(const ::google::protobuf::Message& from);
651 void CopyFrom(const BoolValue& from);
652 void MergeFrom(const BoolValue& from);
653 void Clear();
654 bool IsInitialized() const;
655
656 int ByteSize() const;
657 bool MergePartialFromCodedStream(
658 ::google::protobuf::io::CodedInputStream* input);
659 void SerializeWithCachedSizes(
660 ::google::protobuf::io::CodedOutputStream* output) const;
661 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
662 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)663 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
664 return InternalSerializeWithCachedSizesToArray(false, output);
665 }
GetCachedSize()666 int GetCachedSize() const { return _cached_size_; }
667 private:
668 void SharedCtor();
669 void SharedDtor();
670 void SetCachedSize(int size) const;
671 void InternalSwap(BoolValue* other);
672 protected:
673 explicit BoolValue(::google::protobuf::Arena* arena);
674 private:
675 static void ArenaDtor(void* object);
676 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
677 private:
GetArenaNoVirtual()678 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
679 return _internal_metadata_.arena();
680 }
MaybeArenaPtr()681 inline void* MaybeArenaPtr() const {
682 return _internal_metadata_.raw_arena_ptr();
683 }
684 public:
685
686 ::google::protobuf::Metadata GetMetadata() const;
687
688 // nested types ----------------------------------------------------
689
690 // accessors -------------------------------------------------------
691
692 // optional bool value = 1;
693 void clear_value();
694 static const int kValueFieldNumber = 1;
695 bool value() const;
696 void set_value(bool value);
697
698 // @@protoc_insertion_point(class_scope:google.protobuf.BoolValue)
699 private:
700
701 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
702 friend class ::google::protobuf::Arena;
703 typedef void InternalArenaConstructable_;
704 typedef void DestructorSkippable_;
705 bool _is_default_instance_;
706 bool value_;
707 mutable int _cached_size_;
708 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
709 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
710 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
711
712 void InitAsDefaultInstance();
713 static BoolValue* default_instance_;
714 };
715 // -------------------------------------------------------------------
716
717 class LIBPROTOBUF_EXPORT StringValue : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.StringValue) */ {
718 public:
719 StringValue();
720 virtual ~StringValue();
721
722 StringValue(const StringValue& from);
723
724 inline StringValue& operator=(const StringValue& from) {
725 CopyFrom(from);
726 return *this;
727 }
728
GetArena()729 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()730 inline void* GetMaybeArenaPointer() const {
731 return MaybeArenaPtr();
732 }
733 static const ::google::protobuf::Descriptor* descriptor();
734 static const StringValue& default_instance();
735
736 void UnsafeArenaSwap(StringValue* other);
737 void Swap(StringValue* other);
738
739 // implements Message ----------------------------------------------
740
New()741 inline StringValue* New() const { return New(NULL); }
742
743 StringValue* New(::google::protobuf::Arena* arena) const;
744 void CopyFrom(const ::google::protobuf::Message& from);
745 void MergeFrom(const ::google::protobuf::Message& from);
746 void CopyFrom(const StringValue& from);
747 void MergeFrom(const StringValue& from);
748 void Clear();
749 bool IsInitialized() const;
750
751 int ByteSize() const;
752 bool MergePartialFromCodedStream(
753 ::google::protobuf::io::CodedInputStream* input);
754 void SerializeWithCachedSizes(
755 ::google::protobuf::io::CodedOutputStream* output) const;
756 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
757 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)758 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
759 return InternalSerializeWithCachedSizesToArray(false, output);
760 }
GetCachedSize()761 int GetCachedSize() const { return _cached_size_; }
762 private:
763 void SharedCtor();
764 void SharedDtor();
765 void SetCachedSize(int size) const;
766 void InternalSwap(StringValue* other);
767 protected:
768 explicit StringValue(::google::protobuf::Arena* arena);
769 private:
770 static void ArenaDtor(void* object);
771 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
772 private:
GetArenaNoVirtual()773 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
774 return _internal_metadata_.arena();
775 }
MaybeArenaPtr()776 inline void* MaybeArenaPtr() const {
777 return _internal_metadata_.raw_arena_ptr();
778 }
779 public:
780
781 ::google::protobuf::Metadata GetMetadata() const;
782
783 // nested types ----------------------------------------------------
784
785 // accessors -------------------------------------------------------
786
787 // optional string value = 1;
788 void clear_value();
789 static const int kValueFieldNumber = 1;
790 const ::std::string& value() const;
791 void set_value(const ::std::string& value);
792 void set_value(const char* value);
793 void set_value(const char* value, size_t size);
794 ::std::string* mutable_value();
795 ::std::string* release_value();
796 void set_allocated_value(::std::string* value);
797 ::std::string* unsafe_arena_release_value();
798 void unsafe_arena_set_allocated_value(
799 ::std::string* value);
800
801 // @@protoc_insertion_point(class_scope:google.protobuf.StringValue)
802 private:
803
804 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
805 friend class ::google::protobuf::Arena;
806 typedef void InternalArenaConstructable_;
807 typedef void DestructorSkippable_;
808 bool _is_default_instance_;
809 ::google::protobuf::internal::ArenaStringPtr value_;
810 mutable int _cached_size_;
811 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
812 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
813 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
814
815 void InitAsDefaultInstance();
816 static StringValue* default_instance_;
817 };
818 // -------------------------------------------------------------------
819
820 class LIBPROTOBUF_EXPORT BytesValue : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:google.protobuf.BytesValue) */ {
821 public:
822 BytesValue();
823 virtual ~BytesValue();
824
825 BytesValue(const BytesValue& from);
826
827 inline BytesValue& operator=(const BytesValue& from) {
828 CopyFrom(from);
829 return *this;
830 }
831
GetArena()832 inline ::google::protobuf::Arena* GetArena() const { return GetArenaNoVirtual(); }
GetMaybeArenaPointer()833 inline void* GetMaybeArenaPointer() const {
834 return MaybeArenaPtr();
835 }
836 static const ::google::protobuf::Descriptor* descriptor();
837 static const BytesValue& default_instance();
838
839 void UnsafeArenaSwap(BytesValue* other);
840 void Swap(BytesValue* other);
841
842 // implements Message ----------------------------------------------
843
New()844 inline BytesValue* New() const { return New(NULL); }
845
846 BytesValue* New(::google::protobuf::Arena* arena) const;
847 void CopyFrom(const ::google::protobuf::Message& from);
848 void MergeFrom(const ::google::protobuf::Message& from);
849 void CopyFrom(const BytesValue& from);
850 void MergeFrom(const BytesValue& from);
851 void Clear();
852 bool IsInitialized() const;
853
854 int ByteSize() const;
855 bool MergePartialFromCodedStream(
856 ::google::protobuf::io::CodedInputStream* input);
857 void SerializeWithCachedSizes(
858 ::google::protobuf::io::CodedOutputStream* output) const;
859 ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
860 bool deterministic, ::google::protobuf::uint8* output) const;
SerializeWithCachedSizesToArray(::google::protobuf::uint8 * output)861 ::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const {
862 return InternalSerializeWithCachedSizesToArray(false, output);
863 }
GetCachedSize()864 int GetCachedSize() const { return _cached_size_; }
865 private:
866 void SharedCtor();
867 void SharedDtor();
868 void SetCachedSize(int size) const;
869 void InternalSwap(BytesValue* other);
870 protected:
871 explicit BytesValue(::google::protobuf::Arena* arena);
872 private:
873 static void ArenaDtor(void* object);
874 inline void RegisterArenaDtor(::google::protobuf::Arena* arena);
875 private:
GetArenaNoVirtual()876 inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
877 return _internal_metadata_.arena();
878 }
MaybeArenaPtr()879 inline void* MaybeArenaPtr() const {
880 return _internal_metadata_.raw_arena_ptr();
881 }
882 public:
883
884 ::google::protobuf::Metadata GetMetadata() const;
885
886 // nested types ----------------------------------------------------
887
888 // accessors -------------------------------------------------------
889
890 // optional bytes value = 1;
891 void clear_value();
892 static const int kValueFieldNumber = 1;
893 const ::std::string& value() const;
894 void set_value(const ::std::string& value);
895 void set_value(const char* value);
896 void set_value(const void* value, size_t size);
897 ::std::string* mutable_value();
898 ::std::string* release_value();
899 void set_allocated_value(::std::string* value);
900 ::std::string* unsafe_arena_release_value();
901 void unsafe_arena_set_allocated_value(
902 ::std::string* value);
903
904 // @@protoc_insertion_point(class_scope:google.protobuf.BytesValue)
905 private:
906
907 ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
908 friend class ::google::protobuf::Arena;
909 typedef void InternalArenaConstructable_;
910 typedef void DestructorSkippable_;
911 bool _is_default_instance_;
912 ::google::protobuf::internal::ArenaStringPtr value_;
913 mutable int _cached_size_;
914 friend void LIBPROTOBUF_EXPORT protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto();
915 friend void protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto();
916 friend void protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto();
917
918 void InitAsDefaultInstance();
919 static BytesValue* default_instance_;
920 };
921 // ===================================================================
922
923
924 // ===================================================================
925
926 #if !PROTOBUF_INLINE_NOT_IN_HEADERS
927 // DoubleValue
928
929 // optional double value = 1;
clear_value()930 inline void DoubleValue::clear_value() {
931 value_ = 0;
932 }
value()933 inline double DoubleValue::value() const {
934 // @@protoc_insertion_point(field_get:google.protobuf.DoubleValue.value)
935 return value_;
936 }
set_value(double value)937 inline void DoubleValue::set_value(double value) {
938
939 value_ = value;
940 // @@protoc_insertion_point(field_set:google.protobuf.DoubleValue.value)
941 }
942
943 // -------------------------------------------------------------------
944
945 // FloatValue
946
947 // optional float value = 1;
clear_value()948 inline void FloatValue::clear_value() {
949 value_ = 0;
950 }
value()951 inline float FloatValue::value() const {
952 // @@protoc_insertion_point(field_get:google.protobuf.FloatValue.value)
953 return value_;
954 }
set_value(float value)955 inline void FloatValue::set_value(float value) {
956
957 value_ = value;
958 // @@protoc_insertion_point(field_set:google.protobuf.FloatValue.value)
959 }
960
961 // -------------------------------------------------------------------
962
963 // Int64Value
964
965 // optional int64 value = 1;
clear_value()966 inline void Int64Value::clear_value() {
967 value_ = GOOGLE_LONGLONG(0);
968 }
value()969 inline ::google::protobuf::int64 Int64Value::value() const {
970 // @@protoc_insertion_point(field_get:google.protobuf.Int64Value.value)
971 return value_;
972 }
set_value(::google::protobuf::int64 value)973 inline void Int64Value::set_value(::google::protobuf::int64 value) {
974
975 value_ = value;
976 // @@protoc_insertion_point(field_set:google.protobuf.Int64Value.value)
977 }
978
979 // -------------------------------------------------------------------
980
981 // UInt64Value
982
983 // optional uint64 value = 1;
clear_value()984 inline void UInt64Value::clear_value() {
985 value_ = GOOGLE_ULONGLONG(0);
986 }
value()987 inline ::google::protobuf::uint64 UInt64Value::value() const {
988 // @@protoc_insertion_point(field_get:google.protobuf.UInt64Value.value)
989 return value_;
990 }
set_value(::google::protobuf::uint64 value)991 inline void UInt64Value::set_value(::google::protobuf::uint64 value) {
992
993 value_ = value;
994 // @@protoc_insertion_point(field_set:google.protobuf.UInt64Value.value)
995 }
996
997 // -------------------------------------------------------------------
998
999 // Int32Value
1000
1001 // optional int32 value = 1;
clear_value()1002 inline void Int32Value::clear_value() {
1003 value_ = 0;
1004 }
value()1005 inline ::google::protobuf::int32 Int32Value::value() const {
1006 // @@protoc_insertion_point(field_get:google.protobuf.Int32Value.value)
1007 return value_;
1008 }
set_value(::google::protobuf::int32 value)1009 inline void Int32Value::set_value(::google::protobuf::int32 value) {
1010
1011 value_ = value;
1012 // @@protoc_insertion_point(field_set:google.protobuf.Int32Value.value)
1013 }
1014
1015 // -------------------------------------------------------------------
1016
1017 // UInt32Value
1018
1019 // optional uint32 value = 1;
clear_value()1020 inline void UInt32Value::clear_value() {
1021 value_ = 0u;
1022 }
value()1023 inline ::google::protobuf::uint32 UInt32Value::value() const {
1024 // @@protoc_insertion_point(field_get:google.protobuf.UInt32Value.value)
1025 return value_;
1026 }
set_value(::google::protobuf::uint32 value)1027 inline void UInt32Value::set_value(::google::protobuf::uint32 value) {
1028
1029 value_ = value;
1030 // @@protoc_insertion_point(field_set:google.protobuf.UInt32Value.value)
1031 }
1032
1033 // -------------------------------------------------------------------
1034
1035 // BoolValue
1036
1037 // optional bool value = 1;
clear_value()1038 inline void BoolValue::clear_value() {
1039 value_ = false;
1040 }
value()1041 inline bool BoolValue::value() const {
1042 // @@protoc_insertion_point(field_get:google.protobuf.BoolValue.value)
1043 return value_;
1044 }
set_value(bool value)1045 inline void BoolValue::set_value(bool value) {
1046
1047 value_ = value;
1048 // @@protoc_insertion_point(field_set:google.protobuf.BoolValue.value)
1049 }
1050
1051 // -------------------------------------------------------------------
1052
1053 // StringValue
1054
1055 // optional string value = 1;
clear_value()1056 inline void StringValue::clear_value() {
1057 value_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
1058 }
value()1059 inline const ::std::string& StringValue::value() const {
1060 // @@protoc_insertion_point(field_get:google.protobuf.StringValue.value)
1061 return value_.Get(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
1062 }
set_value(const::std::string & value)1063 inline void StringValue::set_value(const ::std::string& value) {
1064
1065 value_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value, GetArenaNoVirtual());
1066 // @@protoc_insertion_point(field_set:google.protobuf.StringValue.value)
1067 }
set_value(const char * value)1068 inline void StringValue::set_value(const char* value) {
1069
1070 value_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
1071 GetArenaNoVirtual());
1072 // @@protoc_insertion_point(field_set_char:google.protobuf.StringValue.value)
1073 }
set_value(const char * value,size_t size)1074 inline void StringValue::set_value(const char* value,
1075 size_t size) {
1076
1077 value_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
1078 reinterpret_cast<const char*>(value), size), GetArenaNoVirtual());
1079 // @@protoc_insertion_point(field_set_pointer:google.protobuf.StringValue.value)
1080 }
mutable_value()1081 inline ::std::string* StringValue::mutable_value() {
1082
1083 // @@protoc_insertion_point(field_mutable:google.protobuf.StringValue.value)
1084 return value_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
1085 }
release_value()1086 inline ::std::string* StringValue::release_value() {
1087 // @@protoc_insertion_point(field_release:google.protobuf.StringValue.value)
1088
1089 return value_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
1090 }
unsafe_arena_release_value()1091 inline ::std::string* StringValue::unsafe_arena_release_value() {
1092 // @@protoc_insertion_point(field_unsafe_arena_release:google.protobuf.StringValue.value)
1093 GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
1094
1095 return value_.UnsafeArenaRelease(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
1096 GetArenaNoVirtual());
1097 }
set_allocated_value(::std::string * value)1098 inline void StringValue::set_allocated_value(::std::string* value) {
1099 if (value != NULL) {
1100
1101 } else {
1102
1103 }
1104 value_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value,
1105 GetArenaNoVirtual());
1106 // @@protoc_insertion_point(field_set_allocated:google.protobuf.StringValue.value)
1107 }
unsafe_arena_set_allocated_value(::std::string * value)1108 inline void StringValue::unsafe_arena_set_allocated_value(
1109 ::std::string* value) {
1110 GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
1111 if (value != NULL) {
1112
1113 } else {
1114
1115 }
1116 value_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
1117 value, GetArenaNoVirtual());
1118 // @@protoc_insertion_point(field_unsafe_arena_set_allocated:google.protobuf.StringValue.value)
1119 }
1120
1121 // -------------------------------------------------------------------
1122
1123 // BytesValue
1124
1125 // optional bytes value = 1;
clear_value()1126 inline void BytesValue::clear_value() {
1127 value_.ClearToEmpty(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
1128 }
value()1129 inline const ::std::string& BytesValue::value() const {
1130 // @@protoc_insertion_point(field_get:google.protobuf.BytesValue.value)
1131 return value_.Get(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
1132 }
set_value(const::std::string & value)1133 inline void BytesValue::set_value(const ::std::string& value) {
1134
1135 value_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value, GetArenaNoVirtual());
1136 // @@protoc_insertion_point(field_set:google.protobuf.BytesValue.value)
1137 }
set_value(const char * value)1138 inline void BytesValue::set_value(const char* value) {
1139
1140 value_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value),
1141 GetArenaNoVirtual());
1142 // @@protoc_insertion_point(field_set_char:google.protobuf.BytesValue.value)
1143 }
set_value(const void * value,size_t size)1144 inline void BytesValue::set_value(const void* value,
1145 size_t size) {
1146
1147 value_.Set(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(
1148 reinterpret_cast<const char*>(value), size), GetArenaNoVirtual());
1149 // @@protoc_insertion_point(field_set_pointer:google.protobuf.BytesValue.value)
1150 }
mutable_value()1151 inline ::std::string* BytesValue::mutable_value() {
1152
1153 // @@protoc_insertion_point(field_mutable:google.protobuf.BytesValue.value)
1154 return value_.Mutable(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
1155 }
release_value()1156 inline ::std::string* BytesValue::release_value() {
1157 // @@protoc_insertion_point(field_release:google.protobuf.BytesValue.value)
1158
1159 return value_.Release(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), GetArenaNoVirtual());
1160 }
unsafe_arena_release_value()1161 inline ::std::string* BytesValue::unsafe_arena_release_value() {
1162 // @@protoc_insertion_point(field_unsafe_arena_release:google.protobuf.BytesValue.value)
1163 GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
1164
1165 return value_.UnsafeArenaRelease(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
1166 GetArenaNoVirtual());
1167 }
set_allocated_value(::std::string * value)1168 inline void BytesValue::set_allocated_value(::std::string* value) {
1169 if (value != NULL) {
1170
1171 } else {
1172
1173 }
1174 value_.SetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value,
1175 GetArenaNoVirtual());
1176 // @@protoc_insertion_point(field_set_allocated:google.protobuf.BytesValue.value)
1177 }
unsafe_arena_set_allocated_value(::std::string * value)1178 inline void BytesValue::unsafe_arena_set_allocated_value(
1179 ::std::string* value) {
1180 GOOGLE_DCHECK(GetArenaNoVirtual() != NULL);
1181 if (value != NULL) {
1182
1183 } else {
1184
1185 }
1186 value_.UnsafeArenaSetAllocated(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
1187 value, GetArenaNoVirtual());
1188 // @@protoc_insertion_point(field_unsafe_arena_set_allocated:google.protobuf.BytesValue.value)
1189 }
1190
1191 #endif // !PROTOBUF_INLINE_NOT_IN_HEADERS
1192 // -------------------------------------------------------------------
1193
1194 // -------------------------------------------------------------------
1195
1196 // -------------------------------------------------------------------
1197
1198 // -------------------------------------------------------------------
1199
1200 // -------------------------------------------------------------------
1201
1202 // -------------------------------------------------------------------
1203
1204 // -------------------------------------------------------------------
1205
1206 // -------------------------------------------------------------------
1207
1208
1209 // @@protoc_insertion_point(namespace_scope)
1210
1211 } // namespace protobuf
1212 } // namespace google
1213
1214 // @@protoc_insertion_point(global_scope)
1215
1216 #endif // PROTOBUF_google_2fprotobuf_2fwrappers_2eproto__INCLUDED
1217