Index: third_party/protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h |
diff --git a/third_party/protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h b/third_party/protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b4718d0256bf539f141bc5c7b7df94d69eabe2a0 |
--- /dev/null |
+++ b/third_party/protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h |
@@ -0,0 +1,157 @@ |
+// Generated by the protocol buffer compiler. DO NOT EDIT! |
+// source: google/protobuf/wrappers.proto |
+ |
+#import "GPBProtocolBuffers.h" |
+ |
+#if GOOGLE_PROTOBUF_OBJC_GEN_VERSION != 30000 |
+#error This file was generated by a different version of protoc-gen-objc which is incompatible with your Protocol Buffer sources. |
+#endif |
+ |
+// @@protoc_insertion_point(imports) |
+ |
+CF_EXTERN_C_BEGIN |
+ |
+NS_ASSUME_NONNULL_BEGIN |
+ |
+#pragma mark - GPBWrappersRoot |
+ |
+@interface GPBWrappersRoot : GPBRootObject |
+ |
+// The base class provides: |
+// + (GPBExtensionRegistry *)extensionRegistry; |
+// which is an GPBExtensionRegistry that includes all the extensions defined by |
+// this file and all files that it depends on. |
+ |
+@end |
+ |
+#pragma mark - GPBDoubleValue |
+ |
+typedef GPB_ENUM(GPBDoubleValue_FieldNumber) { |
+ GPBDoubleValue_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for double. |
+@interface GPBDoubleValue : GPBMessage |
+ |
+// The double value. |
+@property(nonatomic, readwrite) double value; |
+ |
+@end |
+ |
+#pragma mark - GPBFloatValue |
+ |
+typedef GPB_ENUM(GPBFloatValue_FieldNumber) { |
+ GPBFloatValue_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for float. |
+@interface GPBFloatValue : GPBMessage |
+ |
+// The float value. |
+@property(nonatomic, readwrite) float value; |
+ |
+@end |
+ |
+#pragma mark - GPBInt64Value |
+ |
+typedef GPB_ENUM(GPBInt64Value_FieldNumber) { |
+ GPBInt64Value_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for int64. |
+@interface GPBInt64Value : GPBMessage |
+ |
+// The int64 value. |
+@property(nonatomic, readwrite) int64_t value; |
+ |
+@end |
+ |
+#pragma mark - GPBUInt64Value |
+ |
+typedef GPB_ENUM(GPBUInt64Value_FieldNumber) { |
+ GPBUInt64Value_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for uint64. |
+@interface GPBUInt64Value : GPBMessage |
+ |
+// The uint64 value. |
+@property(nonatomic, readwrite) uint64_t value; |
+ |
+@end |
+ |
+#pragma mark - GPBInt32Value |
+ |
+typedef GPB_ENUM(GPBInt32Value_FieldNumber) { |
+ GPBInt32Value_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for int32. |
+@interface GPBInt32Value : GPBMessage |
+ |
+// The int32 value. |
+@property(nonatomic, readwrite) int32_t value; |
+ |
+@end |
+ |
+#pragma mark - GPBUInt32Value |
+ |
+typedef GPB_ENUM(GPBUInt32Value_FieldNumber) { |
+ GPBUInt32Value_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for uint32. |
+@interface GPBUInt32Value : GPBMessage |
+ |
+// The uint32 value. |
+@property(nonatomic, readwrite) uint32_t value; |
+ |
+@end |
+ |
+#pragma mark - GPBBoolValue |
+ |
+typedef GPB_ENUM(GPBBoolValue_FieldNumber) { |
+ GPBBoolValue_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for bool. |
+@interface GPBBoolValue : GPBMessage |
+ |
+// The bool value. |
+@property(nonatomic, readwrite) BOOL value; |
+ |
+@end |
+ |
+#pragma mark - GPBStringValue |
+ |
+typedef GPB_ENUM(GPBStringValue_FieldNumber) { |
+ GPBStringValue_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for string. |
+@interface GPBStringValue : GPBMessage |
+ |
+// The string value. |
+@property(nonatomic, readwrite, copy, null_resettable) NSString *value; |
+ |
+@end |
+ |
+#pragma mark - GPBBytesValue |
+ |
+typedef GPB_ENUM(GPBBytesValue_FieldNumber) { |
+ GPBBytesValue_FieldNumber_Value = 1, |
+}; |
+ |
+// Wrapper message for bytes. |
+@interface GPBBytesValue : GPBMessage |
+ |
+// The bytes value. |
+@property(nonatomic, readwrite, copy, null_resettable) NSData *value; |
+ |
+@end |
+ |
+NS_ASSUME_NONNULL_END |
+ |
+CF_EXTERN_C_END |
+ |
+// @@protoc_insertion_point(global_scope) |