Sha256: 69eea32123ef32137d5ad4f63c2e4379934563b681a4d4b7b36fbca08b4b1e0e
Contents?: true
Size: 473 Bytes
Versions: 3
Compression:
Stored size: 473 Bytes
Contents
#import "YapDatabaseViewOptions.h" @implementation YapDatabaseViewOptions @synthesize isPersistent = isPersistent; @synthesize allowedCollections = allowedCollections; - (id)init { if ((self = [super init])) { isPersistent = YES; } return self; } - (id)copyWithZone:(NSZone *)zone { YapDatabaseViewOptions *copy = [[YapDatabaseViewOptions alloc] init]; copy->isPersistent = isPersistent; copy->allowedCollections = allowedCollections; return copy; } @end
Version data entries
3 entries across 3 versions & 1 rubygems