Sha256: dd7890d143c3bd9c05301bcac4b70a8db4588a5f6d8f21a5b8ead511f281c728
Contents?: true
Size: 333 Bytes
Versions: 22
Compression:
Stored size: 333 Bytes
Contents
#import "IBarcode.h" #import "BarcodeFactory.h" static BarcodeFactoryBase* ourBarcodeFactory = nil; @implementation BarcodeFactorySingleton +(id<IBarcodeFactory>) getBarcodeFactoryInstance { if (ourBarcodeFactory == nil) { ourBarcodeFactory = [[BarcodeFactory alloc] init]; } return ourBarcodeFactory; } @end
Version data entries
22 entries across 22 versions & 2 rubygems