Sha256: 5f0f13a29339ddad3e873def67928f349b33a78ac21a2efd211d8c662e8e9cb5

Contents?: true

Size: 308 Bytes

Versions: 1

Compression:

Stored size: 308 Bytes

Contents

#import "IPush.h"
#import "PushFactoryBase.h"

static PushFactoryBase* ourPushFactory = nil;

@implementation PushFactorySingleton

+(id<IPushFactory>) getPushFactoryInstance {
    if (ourPushFactory == nil) {
        ourPushFactory = [[PushFactoryBase alloc] init];
    }
    return ourPushFactory;
}

@end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tauplatform-1.0.1 lib/commonAPI/coreapi/ext/platform/iphone/generated/stub_impl/PushFactorySingleton.m