1/*
2 *
3 * (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved
4 *
5 */
6
7#ifndef __CURSIVEATTACHMENTSUBTABLES_H
8#define __CURSIVEATTACHMENTSUBTABLES_H
9
10/**
11 * \file
12 * \internal
13 */
14
15#include "LETypes.h"
16#include "OpenTypeTables.h"
17#include "GlyphPositioningTables.h"
18
19U_NAMESPACE_BEGIN
20
21class LEFontInstance;
22class GlyphIterator;
23
24struct EntryExitRecord
25{
26    Offset entryAnchor;
27    Offset exitAnchor;
28};
29
30struct CursiveAttachmentSubtable : GlyphPositioningSubtable
31{
32    le_uint16 entryExitCount;
33    EntryExitRecord entryExitRecords[ANY_NUMBER];
34
35    le_uint32  process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
36};
37
38U_NAMESPACE_END
39#endif
40
41
42