2000-12-21 20:01:18 +00:00
|
|
|
/*
|
2013-02-06 07:01:19 +00:00
|
|
|
* (C) Copyright IBM Corp. and others 1998-2013 - All Rights Reserved
|
2000-12-21 20:01:18 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NONCONTEXTUALGLYPHSUBSTITUTION_H
|
|
|
|
#define __NONCONTEXTUALGLYPHSUBSTITUTION_H
|
|
|
|
|
2003-01-13 23:15:11 +00:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
* \internal
|
|
|
|
*/
|
|
|
|
|
2000-12-21 20:01:18 +00:00
|
|
|
#include "LETypes.h"
|
|
|
|
#include "LayoutTables.h"
|
|
|
|
#include "LookupTables.h"
|
|
|
|
#include "MorphTables.h"
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
|
2000-12-21 20:01:18 +00:00
|
|
|
struct NonContextualGlyphSubstitutionHeader : MorphSubtableHeader
|
|
|
|
{
|
|
|
|
LookupTable table;
|
|
|
|
};
|
|
|
|
|
2013-02-06 07:01:19 +00:00
|
|
|
struct NonContextualGlyphSubstitutionHeader2 : MorphSubtableHeader2
|
|
|
|
{
|
|
|
|
LookupTable table;
|
|
|
|
};
|
|
|
|
|
2001-10-16 00:39:01 +00:00
|
|
|
U_NAMESPACE_END
|
2000-12-21 20:01:18 +00:00
|
|
|
#endif
|
|
|
|
|