00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableSet;
00010
00011 @interface AVObjectRegistry : NSObject
00012 {
00013 NSMutableSet *_objSet;
00014 }
00015
00016 + (id)defaultObjectRegistry;
00017 - (id)init;
00018 - (void)dealloc;
00019 - (void)registerObject:(id)fp8;
00020 - (void)unregisterObject:(id)fp8;
00021 - (BOOL)isObjectRegistered:(id)fp8;
00022 - (BOOL)isObjectValueRegistered:(id)fp8;
00023 - (void)safeInvokeWithDescription:(id)fp8;
00024 - (void)safePerformOnMainThreadTarget:(id)fp8 selector:(SEL)fp12 object:(id)fp16;
00025 - (void)safePostDelayedNotificationFromMainThreadTarget:(id)fp8 name:(id)fp12 userInfo:(id)fp16;
00026 - (void)safePostNotificationFromMainThreadTarget:(id)fp8 name:(id)fp12 userInfo:(id)fp16;
00027
00028 @end
00029