]> git.saurik.com Git - apple/icu.git/blob - icuSources/layout/NonContextualGlyphSubst.h
ICU-511.25.tar.gz
[apple/icu.git] / icuSources / layout / NonContextualGlyphSubst.h
1 /*
2 * (C) Copyright IBM Corp. and others 1998-2013 - All Rights Reserved
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 {
23 LookupTable table;
24 };
25
26 struct NonContextualGlyphSubstitutionHeader2 : MorphSubtableHeader2
27 {
28 LookupTable table;
29 };
30
31 U_NAMESPACE_END
32 #endif
33