Sha256: e4dfa7b36f524fd8d3017e100d049fa9d873e2ddf103dfb97f3452dc943c240a
Contents?: true
Size: 396 Bytes
Versions: 18
Compression:
Stored size: 396 Bytes
Contents
#import "INotification.h" #import "NotificationFactoryBase.h" static NotificationFactoryBase* ourNotificationFactory = nil; @implementation NotificationFactorySingleton +(id<INotificationFactory>) getNotificationFactoryInstance { if (ourNotificationFactory == nil) { ourNotificationFactory = [[NotificationFactoryBase alloc] init]; } return ourNotificationFactory; } @end
Version data entries
18 entries across 17 versions & 2 rubygems