Index: abi/src/wp/impexp/xp/ie_imp_MsWord_97.h =================================================================== RCS file: /cvsroot/abi/src/wp/impexp/xp/ie_imp_MsWord_97.h,v retrieving revision 1.52 diff -u -r1.52 ie_imp_MsWord_97.h --- abi/src/wp/impexp/xp/ie_imp_MsWord_97.h 25 Oct 2002 08:03:25 -0000 1.52 +++ abi/src/wp/impexp/xp/ie_imp_MsWord_97.h 25 Oct 2002 13:19:30 -0000 @@ -147,6 +147,24 @@ UT_Vector m_vLists; UT_uint32 m_iListIdIncrement[9]; UT_uint32 m_iMSWordListId; + + + bool m_bInTable; // are we in a table ? + int m_iRowsRemaining; // number of rows left to process + int m_iCellsRemaining; // number of cells left to process in the current row + int m_iCurrentRow; // + int m_iCurrentCell; // + bool m_bRowOpen; // row strux open ? + bool m_bCellOpen; // cell strux open ? + UT_Vector m_vecColumnSpansForCurrentRow; // placeholder for horizontal cell spans + + void __table_open(); + void __table_close(); + void __row_open(); + void __row_close(); + void __cell_open(); + void __cell_close(); + }; #endif /* IE_IMP_MSWORD_H */