]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | /* |
2ca993e8 | 2 | * (C) Copyright IBM Corp. and others 1998-2016 - All Rights Reserved |
b75a7d8f A |
3 | * |
4 | */ | |
5 | ||
6 | #ifndef __NONCONTEXTUALGLYPHSUBSTITUTION_H | |
7 | #define __NONCONTEXTUALGLYPHSUBSTITUTION_H | |
8 | ||
9 | /** | |
10 | * \file | |
11 | * \internal | |
12 | */ | |
13 | ||
14 | #include "LETypes.h" | |
15 | #include "LayoutTables.h" | |
16 | #include "LookupTables.h" | |
17 | #include "MorphTables.h" | |
18 | ||
19 | U_NAMESPACE_BEGIN | |
20 | ||
21 | struct NonContextualGlyphSubstitutionHeader : MorphSubtableHeader | |
22 | { | |
2ca993e8 | 23 | LookupTableBase table; |
b75a7d8f A |
24 | }; |
25 | ||
51004dcb A |
26 | struct NonContextualGlyphSubstitutionHeader2 : MorphSubtableHeader2 |
27 | { | |
2ca993e8 | 28 | LookupTableBase table; |
51004dcb A |
29 | }; |
30 | ||
b75a7d8f A |
31 | U_NAMESPACE_END |
32 | #endif |