00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class ECMappingContext, EDCell, EDWorkbook;
00010
00011 @interface EDFormulaHelper : NSObject
00012 {
00013 EDCell *mCell;
00014 EDWorkbook *mWorkbook;
00015 ECMappingContext *mMappingContext;
00016 _Bool mImporting;
00017 }
00018
00019 + (id)formulaHelperWithWorkbook:(id)fp8 withCell:(id)fp12 isImport:(_Bool)fp16;
00020 - (id)initWithWorkbook:(id)fp8 withCell:(id)fp12 isImport:(_Bool)fp16;
00021 - (void)dealloc;
00022 - (unsigned int)resolveName:(id)fp8;
00023 - (unsigned int)resolveSheet:(id)fp8;
00024 - (unsigned int)resolveFirstSheet:(id)fp8 lastSheet:(id)fp12;
00025 - (unsigned int)resolveFile:(id)fp8;
00026 - (unsigned int)resolveAddInLinkReference;
00027 - (unsigned int)addExternalAddInName:(id)fp8;
00028 - (id)resolveTable:(id)fp8;
00029 - (unsigned int)resolveTableToSheetId:(id)fp8;
00030 - (unsigned int)resolveTableColumn:(id)fp8 columnName:(id)fp12;
00031 - (BOOL)isCurrentSheet:(id)fp8;
00032
00033 @end
00034