00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSMapTable.h>
00008
00009 @interface NSMapTable1 : NSMapTable
00010 {
00011 struct __CFDictionary *_table;
00012 struct {
00013 void *hash;
00014 void *isEqual;
00015 void *retain;
00016 void *release;
00017 void *describe;
00018 void *notAKeyMarker;
00019 } _keyCallBacks;
00020 struct {
00021 void *retain;
00022 void *release;
00023 void *describe;
00024 } _valueCallBacks;
00025 }
00026
00027 + (void)initialize;
00028 - (id)init;
00029 - (void)dealloc;
00030 - (void)removeAllItems;
00031 - (BOOL)isEqual:(id)fp8;
00032 - (id)copy;
00033 - (BOOL)mapMember:(const void *)fp8 originalKey:(const void **)fp12 value:(const void **)fp16;
00034 - (void *)itemForKey:(const void *)fp8;
00035 - (void)setItem:(const void *)fp8 forKey:(const void *)fp12;
00036 - (void)setItem:(const void *)fp8 forKnownAbsentKey:(const void *)fp12;
00037 - (void *)existingItemForSetItem:(const void *)fp8 forAbsentKey:(const void *)fp12;
00038 - (void)removeItemForKey:(const void *)fp8;
00039 - (unsigned int)count;
00040 - (id)description;
00041 - (id)allKeys;
00042 - (id)allValues;
00043 - (unsigned int)getKeys:(const void **)fp8 values:(const void **)fp12;
00044
00045 @end
00046