00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "NSCopyingProtocol.h"
00010
00011 @class NSString;
00012
00013 @interface WDFont : NSObject <NSCopying>
00014 {
00015 NSString *mName;
00016 NSString *mSecondName;
00017 int mFontFamily;
00018 int mCharacterSet;
00019 int mPitch;
00020 }
00021
00022 - (id)name;
00023 - (void)setName:(id)fp8;
00024 - (id)secondName;
00025 - (void)setSecondName:(id)fp8;
00026 - (int)fontFamily;
00027 - (void)setFontFamily:(int)fp8;
00028 - (int)characterSet;
00029 - (void)setCharacterSet:(int)fp8;
00030 - (int)pitch;
00031 - (void)setPitch:(int)fp8;
00032 - (id)init;
00033 - (id)initWithName:(id)fp8;
00034 - (void)dealloc;
00035 - (id)copyWithZone:(struct _NSZone *)fp8;
00036 - (unsigned int)hash;
00037 - (BOOL)isEqual:(id)fp8;
00038
00039 @end
00040