00001
00002
00003
00004
00005
00006
00007 #import "NSMutableSet.h"
00008
00009 @interface NSCountedSet : NSMutableSet
00010 {
00011 id _table;
00012 void *_reserved;
00013 }
00014
00015 - (unsigned int)count;
00016 - (id)member:(id)fp8;
00017 - (id)objectEnumerator;
00018 - (void)addObject:(id)fp8;
00019 - (void)removeObject:(id)fp8;
00020 - (id)copyWithZone:(struct _NSZone *)fp8;
00021 - (id)mutableCopyWithZone:(struct _NSZone *)fp8;
00022 - (void)encodeWithCoder:(id)fp8;
00023 - (id)initWithCoder:(id)fp8;
00024 - (id)allObjects;
00025 - (id)anyObject;
00026 - (id)descriptionWithLocale:(id)fp8;
00027 - (BOOL)intersectsSet:(id)fp8;
00028 - (BOOL)isEqualToSet:(id)fp8;
00029 - (BOOL)isSubsetOfSet:(id)fp8;
00030 - (void)makeObjectsPerformSelector:(SEL)fp8;
00031 - (void)makeObjectsPerformSelector:(SEL)fp8 withObject:(id)fp12;
00032 - (Class)classForCoder;
00033 - (void)intersectSet:(id)fp8;
00034 - (void)unionSet:(id)fp8;
00035 - (void)removeAllObjects;
00036 - (unsigned int)countForObject:(id)fp8;
00037 - (id)init;
00038 - (id)initWithCapacity:(unsigned int)fp8;
00039 - (id)initWithObjects:(id *)fp8 count:(unsigned int)fp12;
00040 - (id)initWithSet:(id)fp8 copyItems:(BOOL)fp12;
00041 - (id)initWithArray:(id)fp8;
00042 - (id)initWithSet:(id)fp8;
00043 - (void)dealloc;
00044
00045 @end
00046