X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/249c4c5ea9376c24572daf9c2effa7484a282f14..3d1f044b704633e2e541231cd17ae9ecf9ad5c7a:/icuSources/layout/CoverageTables.h?ds=inline diff --git a/icuSources/layout/CoverageTables.h b/icuSources/layout/CoverageTables.h deleted file mode 100644 index a5d63572..00000000 --- a/icuSources/layout/CoverageTables.h +++ /dev/null @@ -1,47 +0,0 @@ -/* - * - * (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved - * - */ - -#ifndef __COVERAGETABLES_H -#define __COVERAGETABLES_H - -/** - * \file - * \internal - */ - -#include "LETypes.h" -#include "OpenTypeTables.h" - -U_NAMESPACE_BEGIN - -struct CoverageTable -{ - le_uint16 coverageFormat; - - le_int32 getGlyphCoverage(LEGlyphID glyphID) const; -}; - -struct CoverageFormat1Table : CoverageTable -{ - le_uint16 glyphCount; - TTGlyphID glyphArray[ANY_NUMBER]; - - le_int32 getGlyphCoverage(LEGlyphID glyphID) const; -}; -LE_VAR_ARRAY(CoverageFormat1Table, glyphArray) - - -struct CoverageFormat2Table : CoverageTable -{ - le_uint16 rangeCount; - GlyphRangeRecord rangeRecordArray[ANY_NUMBER]; - - le_int32 getGlyphCoverage(LEGlyphID glyphID) const; -}; -LE_VAR_ARRAY(CoverageFormat2Table, rangeRecordArray) - -U_NAMESPACE_END -#endif