00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface EDPivotAreaReference : NSObject
00010 {
00011 _Bool mByPosition;
00012 _Bool mRelative;
00013 _Bool mSelected;
00014 unsigned int mFieldId;
00015 unsigned int mCount;
00016 }
00017
00018 + (id)pivotAreaReference;
00019 - (id)init;
00020 - (_Bool)byPosition;
00021 - (void)setByPosition:(_Bool)fp8;
00022 - (_Bool)relative;
00023 - (void)setRelative:(_Bool)fp8;
00024 - (_Bool)selected;
00025 - (void)setSelected:(_Bool)fp8;
00026 - (unsigned int)fieldId;
00027 - (void)setFieldId:(unsigned int)fp8;
00028 - (unsigned int)count;
00029 - (void)setCount:(unsigned int)fp8;
00030
00031 @end
00032