sl@0: /* sl@0: * sl@0: * (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved sl@0: * sl@0: */ sl@0: sl@0: #ifndef __CURSIVEATTACHMENTSUBTABLES_H sl@0: #define __CURSIVEATTACHMENTSUBTABLES_H sl@0: sl@0: /** sl@0: * \file sl@0: * \internal sl@0: */ sl@0: sl@0: #include "LETypes.h" sl@0: #include "OpenTypeTables.h" sl@0: #include "GlyphPositioningTables.h" sl@0: sl@0: U_NAMESPACE_BEGIN sl@0: sl@0: class LEFontInstance; sl@0: class GlyphIterator; sl@0: sl@0: struct EntryExitRecord sl@0: { sl@0: Offset entryAnchor; sl@0: Offset exitAnchor; sl@0: }; sl@0: sl@0: struct CursiveAttachmentSubtable : GlyphPositioningSubtable sl@0: { sl@0: le_uint16 entryExitCount; sl@0: EntryExitRecord entryExitRecords[ANY_NUMBER]; sl@0: sl@0: le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const; sl@0: }; sl@0: sl@0: U_NAMESPACE_END sl@0: #endif sl@0: sl@0: