00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSHashTable.h>
00008
00009 @interface NSHashTable1 : NSHashTable
00010 {
00011 struct __CFSet *_table;
00012 struct {
00013 void *hash;
00014 void *isEqual;
00015 void *retain;
00016 void *release;
00017 void *describe;
00018 } _callBacks;
00019 }
00020
00021 - (id)init;
00022 - (void)dealloc;
00023 - (void)removeAllItems;
00024 - (BOOL)isEqual:(id)fp8;
00025 - (id)copy;
00026 - (void *)getItem:(const void *)fp8;
00027 - (void)addItem:(const void *)fp8;
00028 - (void)insertAbsentItem:(const void *)fp8;
00029 - (void)insertKnownAbsentItem:(const void *)fp8;
00030 - (void)removeItem:(const void *)fp8;
00031 - (unsigned int)count;
00032 - (id)description;
00033 - (id)allObjects;
00034 - (unsigned int)getKeys:(const void **)fp8;
00035
00036 @end
00037