Sha256: 471710f4ab1d7c24735caa362fb330556b3bd38d3ce55b947ea88927d87fb9d1
Contents?: true
Size: 279 Bytes
Versions: 8
Compression:
Stored size: 279 Bytes
Contents
#import "EXPUnsupportedObject.h" @implementation EXPUnsupportedObject @synthesize type=_type; - (id)initWithType:(NSString *)type { self = [super init]; if(self) { self.type = type; } return self; } - (void)dealloc { self.type = nil; [super dealloc]; } @end
Version data entries
8 entries across 8 versions & 2 rubygems