Sha256: ee77bad775d598cbe6d79d3285fbeea71df88c0025281e9474106fd978da20d6
Contents?: true
Size: 649 Bytes
Versions: 9
Compression:
Stored size: 649 Bytes
Contents
#import "GHDocString.h" @interface GHDocString () @property (nonatomic, strong) GHLocation * location; @property (nonatomic, strong) NSString * contentType; @property (nonatomic, strong) NSString * content; @end @implementation GHDocString @synthesize location; @synthesize contentType; @synthesize content; - (id)initWithLocation:(GHLocation *)theLocation contentType:(NSString *)theContentType content:(NSString *)theContent { if (self = [super init]) { location = theLocation; contentType = theContentType; content = theContent; } return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems