00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 #import "MFObjectProtocol.h"
00010
00011 @class NSColorStub;
00012
00013 @interface MFPen : NSObject <MFObject>
00014 {
00015 int m_penStyle;
00016 long m_penWidth;
00017 NSColorStub *m_colour;
00018 double *m_userStyleArray;
00019 }
00020
00021 + (id)pen;
00022 + (id)penWithStyle:(int)fp8 width:(long)fp12 colour:(id)fp16 styleArray:(double *)fp20;
00023 - (id)init;
00024 - (id)initWithStyle:(int)fp8 width:(long)fp12 colour:(id)fp16 styleArray:(double *)fp20;
00025 - (void)dealloc;
00026 - (int)selectInto:(id)fp8;
00027 - (id)getColor;
00028 - (long)getWidth;
00029 - (int)getStyle;
00030
00031 @end
00032