Sha256: c81e794138ae12bebb89522f262a93b4f7f97f2303cc323d5681b9c66a4963b6

Contents?: true

Size: 497 Bytes

Versions: 1

Compression:

Stored size: 497 Bytes

Contents

#import "INotification.h"

@interface NotificationFactoryBase : NSObject<INotificationFactory> {
    NSMutableDictionary* mNotificationInstances;
    id<INotificationSingleton> mNotificationSingleton;
}

-(id)init;

-(id<INotificationSingleton>) getNotificationSingleton;
-(id<INotification>) getNotificationByID:(NSString*)ID;

-(void) destroyObjectByID:(NSString*)ID;

-(id<INotification>)createNotificationByID:(NSString*)ID;

-(NSArray*) enumerateNotificationInstances;

-(void)dealloc;

@end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tauplatform-1.0.1 lib/commonAPI/coreapi/ext/platform/iphone/generated/base_impl/NotificationFactoryBase.h