cim/doc/proto/objective-c/SentBody.pbobjc.m
远方夕阳 19cff7ef19 1优化使用文档
2新增 protobuf 的C# C++ Objective-c Python 生成文件
2019-08-29 17:14:26 +08:00

116 lines
3.4 KiB
Objective-C

// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: SentBody.proto
// This CPP symbol can be defined to use imports that match up to the framework
// imports needed when using CocoaPods.
#if !defined(GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS)
#define GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS 0
#endif
#if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS
#import <Protobuf/GPBProtocolBuffers_RuntimeSupport.h>
#else
#import "GPBProtocolBuffers_RuntimeSupport.h"
#endif
#import "SentBody.pbobjc.h"
// @@protoc_insertion_point(imports)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
#pragma mark - SentBodyRoot
@implementation SentBodyRoot
// No extensions in the file and no imports, so no need to generate
// +extensionRegistry.
@end
#pragma mark - SentBodyRoot_FileDescriptor
static GPBFileDescriptor *SentBodyRoot_FileDescriptor(void) {
// This is called by +initialize so there is no need to worry
// about thread safety of the singleton.
static GPBFileDescriptor *descriptor = NULL;
if (!descriptor) {
GPB_DEBUG_CHECK_RUNTIME_VERSIONS();
descriptor = [[GPBFileDescriptor alloc] initWithPackage:@""
syntax:GPBFileSyntaxProto3];
}
return descriptor;
}
#pragma mark - Model
@implementation Model
@dynamic key;
@dynamic timestamp;
@dynamic data_p, data_p_Count;
typedef struct Model__storage_ {
uint32_t _has_storage_[1];
NSString *key;
NSMutableDictionary *data_p;
int64_t timestamp;
} Model__storage_;
// This method is threadsafe because it is initially called
// in +initialize for each subclass.
+ (GPBDescriptor *)descriptor {
static GPBDescriptor *descriptor = nil;
if (!descriptor) {
static GPBMessageFieldDescription fields[] = {
{
.name = "key",
.dataTypeSpecific.className = NULL,
.number = Model_FieldNumber_Key,
.hasIndex = 0,
.offset = (uint32_t)offsetof(Model__storage_, key),
.flags = GPBFieldOptional,
.dataType = GPBDataTypeString,
},
{
.name = "timestamp",
.dataTypeSpecific.className = NULL,
.number = Model_FieldNumber_Timestamp,
.hasIndex = 1,
.offset = (uint32_t)offsetof(Model__storage_, timestamp),
.flags = GPBFieldOptional,
.dataType = GPBDataTypeInt64,
},
{
.name = "data_p",
.dataTypeSpecific.className = NULL,
.number = Model_FieldNumber_Data_p,
.hasIndex = GPBNoHasBit,
.offset = (uint32_t)offsetof(Model__storage_, data_p),
.flags = GPBFieldMapKeyString,
.dataType = GPBDataTypeString,
},
};
GPBDescriptor *localDescriptor =
[GPBDescriptor allocDescriptorForClass:[Model class]
rootClass:[SentBodyRoot class]
file:SentBodyRoot_FileDescriptor()
fields:fields
fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription))
storageSize:sizeof(Model__storage_)
flags:GPBDescriptorInitializationFlag_None];
#if defined(DEBUG) && DEBUG
NSAssert(descriptor == nil, @"Startup recursed!");
#endif // DEBUG
descriptor = localDescriptor;
}
return descriptor;
}
@end
#pragma clang diagnostic pop
// @@protoc_insertion_point(global_scope)