1 /* 2 * 3 * (C) Copyright IBM Corp. and others 1998-2013 - All Rights Reserved 4 * 5 */ 6 7 #ifndef __MORPHSTATETABLES_H 8 #define __MORPHSTATETABLES_H 9 10 /** 11 * \file 12 * \internal 13 */ 14 15 #include "LETypes.h" 16 #include "LayoutTables.h" 17 #include "MorphTables.h" 18 #include "StateTables.h" 19 20 U_NAMESPACE_BEGIN 21 22 struct MorphStateTableHeader : MorphSubtableHeader 23 { 24 StateTableHeader stHeader; 25 }; 26 27 struct MorphStateTableHeader2 : MorphSubtableHeader2 28 { 29 StateTableHeader2 stHeader; 30 }; 31 32 U_NAMESPACE_END 33 #endif 34