]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/layout/CoverageTables.h
ICU-64232.0.1.tar.gz
[apple/icu.git] / icuSources / layout / CoverageTables.h
diff --git a/icuSources/layout/CoverageTables.h b/icuSources/layout/CoverageTables.h
deleted file mode 100644 (file)
index a5d6357..0000000
+++ /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