00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSMutableDictionary;
00010
00011 @interface OADShapeGeometry : NSObject
00012 {
00013 BOOL mIsEscher;
00014 NSMutableDictionary *mAdjustValues;
00015 }
00016
00017 - (id)init;
00018 - (void)dealloc;
00019 - (BOOL)isEscher;
00020 - (void)setIsEscher:(BOOL)fp8;
00021 - (void)setAdjustValue:(long)fp8 atIndex:(unsigned int)fp12;
00022 - (long)adjustValueAtIndex:(unsigned int)fp8;
00023 - (BOOL)hasAdjustValueAtIndex:(unsigned int)fp8;
00024 - (id)adjustValues;
00025
00026 @end
00027