]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | * @(#)MultipleSubstSubtables.h 1.6 00/03/15 | |
3 | * | |
4 | * (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef __MULTIPLESUBSTITUTIONSUBTABLES_H | |
9 | #define __MULTIPLESUBSTITUTIONSUBTABLES_H | |
10 | ||
11 | /** | |
12 | * \file | |
13 | * \internal | |
14 | */ | |
15 | ||
16 | #include "LETypes.h" | |
17 | #include "LEGlyphFilter.h" | |
18 | #include "OpenTypeTables.h" | |
19 | #include "GlyphSubstitutionTables.h" | |
20 | #include "GlyphIterator.h" | |
21 | ||
22 | U_NAMESPACE_BEGIN | |
23 | ||
24 | struct SequenceTable | |
25 | { | |
26 | le_uint16 glyphCount; | |
27 | TTGlyphID substituteArray[ANY_NUMBER]; | |
28 | }; | |
29 | ||
30 | struct MultipleSubstitutionSubtable : GlyphSubstitutionSubtable | |
31 | { | |
32 | le_uint16 sequenceCount; | |
33 | Offset sequenceTableOffsetArray[ANY_NUMBER]; | |
34 | ||
35 | le_uint32 process(GlyphIterator *glyphIterator, const LEGlyphFilter *filter = NULL) const; | |
36 | }; | |
37 | ||
38 | U_NAMESPACE_END | |
39 | #endif |