00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMapTable;
00010
00011 @interface CPXmlEnumMap : NSObject
00012 {
00013 NSMapTable *mNameToValueMap;
00014 }
00015
00016 - (id)initWithDescriptions:(const struct CPXmlEnumDescription *)fp8;
00017 - (void)dealloc;
00018 - (BOOL)readFromNode:(struct _xmlNode *)fp8 ns:(const char *)fp12 name:(const char *)fp16 value:(int *)fp20;
00019 - (int)readFromNode:(struct _xmlNode *)fp8 ns:(const char *)fp12 name:(const char *)fp16;
00020 - (int)readFromNode:(struct _xmlNode *)fp8 ns:(const char *)fp12 name:(const char *)fp16 def:(int)fp20;
00021
00022 @end
00023