00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface ObjectCache : NSObject
00010 {
00011 unsigned int _arrayCapacity;
00012 struct __CFArray *_keysAndValues;
00013 BOOL _useIsEqual;
00014 }
00015
00016 - (id)initWithCapacity:(unsigned int)fp8;
00017 - (void)dealloc;
00018 - (void)setCapacity:(unsigned int)fp8;
00019 - (void)setUsesIsEqualForComparison:(BOOL)fp8;
00020 - (void)setObject:(id)fp8 forKey:(id)fp12;
00021 - (id)objectForKey:(id)fp8;
00022 - (void)removeObjectForKey:(id)fp8;
00023 - (void)removeAllObjects;
00024 - (BOOL)isObjectInCache:(id)fp8;
00025
00026 @end
00027