Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.5 KiB
86 lines
2.5 KiB
10 years ago
|
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||
|
// source: google/protobuf/empty.proto
|
||
|
|
||
9 years ago
|
// 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
|
||
5 years ago
|
#import <Protobuf/GPBProtocolBuffers_RuntimeSupport.h>
|
||
9 years ago
|
#else
|
||
|
#import "GPBProtocolBuffers_RuntimeSupport.h"
|
||
|
#endif
|
||
|
|
||
|
#if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS
|
||
5 years ago
|
#import <Protobuf/GPBEmpty.pbobjc.h>
|
||
9 years ago
|
#else
|
||
5 years ago
|
#import "GPBEmpty.pbobjc.h"
|
||
9 years ago
|
#endif
|
||
10 years ago
|
// @@protoc_insertion_point(imports)
|
||
|
|
||
9 years ago
|
#pragma clang diagnostic push
|
||
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||
|
|
||
10 years ago
|
#pragma mark - GPBEmptyRoot
|
||
|
|
||
|
@implementation GPBEmptyRoot
|
||
|
|
||
8 years ago
|
// No extensions in the file and no imports, so no need to generate
|
||
|
// +extensionRegistry.
|
||
|
|
||
10 years ago
|
@end
|
||
|
|
||
10 years ago
|
#pragma mark - GPBEmptyRoot_FileDescriptor
|
||
|
|
||
10 years ago
|
static GPBFileDescriptor *GPBEmptyRoot_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) {
|
||
8 years ago
|
GPB_DEBUG_CHECK_RUNTIME_VERSIONS();
|
||
10 years ago
|
descriptor = [[GPBFileDescriptor alloc] initWithPackage:@"google.protobuf"
|
||
8 years ago
|
objcPrefix:@"GPB"
|
||
10 years ago
|
syntax:GPBFileSyntaxProto3];
|
||
|
}
|
||
|
return descriptor;
|
||
|
}
|
||
|
|
||
|
#pragma mark - GPBEmpty
|
||
|
|
||
|
@implementation GPBEmpty
|
||
|
|
||
|
|
||
10 years ago
|
typedef struct GPBEmpty__storage_ {
|
||
9 years ago
|
uint32_t _has_storage_[1];
|
||
10 years ago
|
} GPBEmpty__storage_;
|
||
10 years ago
|
|
||
|
// This method is threadsafe because it is initially called
|
||
|
// in +initialize for each subclass.
|
||
|
+ (GPBDescriptor *)descriptor {
|
||
10 years ago
|
static GPBDescriptor *descriptor = nil;
|
||
10 years ago
|
if (!descriptor) {
|
||
10 years ago
|
GPBDescriptor *localDescriptor =
|
||
|
[GPBDescriptor allocDescriptorForClass:[GPBEmpty class]
|
||
|
rootClass:[GPBEmptyRoot class]
|
||
|
file:GPBEmptyRoot_FileDescriptor()
|
||
|
fields:NULL
|
||
|
fieldCount:0
|
||
|
storageSize:sizeof(GPBEmpty__storage_)
|
||
5 years ago
|
flags:GPBDescriptorInitializationFlag_UsesClassRefs];
|
||
6 years ago
|
#if defined(DEBUG) && DEBUG
|
||
|
NSAssert(descriptor == nil, @"Startup recursed!");
|
||
|
#endif // DEBUG
|
||
10 years ago
|
descriptor = localDescriptor;
|
||
10 years ago
|
}
|
||
|
return descriptor;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
|
|
||
9 years ago
|
#pragma clang diagnostic pop
|
||
|
|
||
10 years ago
|
// @@protoc_insertion_point(global_scope)
|