Sha256: 47537ad34ceddd2fb87e88264602001800c78b72d5f028525886f546cb420330
Contents?: true
Size: 322 Bytes
Versions: 17
Compression:
Stored size: 322 Bytes
Contents
#import "ICamera.h" #import "CameraFactory.h" static CameraFactoryBase* ourCameraFactory = nil; @implementation CameraFactorySingleton +(id<ICameraFactory>) getCameraFactoryInstance { if (ourCameraFactory == nil) { ourCameraFactory = [[CameraFactory alloc] init]; } return ourCameraFactory; } @end
Version data entries
17 entries across 17 versions & 2 rubygems