X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/249c4c5ea9376c24572daf9c2effa7484a282f14..3d1f044b704633e2e541231cd17ae9ecf9ad5c7a:/icuSources/layout/SubtableProcessor2.h diff --git a/icuSources/layout/SubtableProcessor2.h b/icuSources/layout/SubtableProcessor2.h deleted file mode 100644 index d3bd7e3a..00000000 --- a/icuSources/layout/SubtableProcessor2.h +++ /dev/null @@ -1,46 +0,0 @@ -/* - * - * (C) Copyright IBM Corp. and others 1998-2013 - All Rights Reserved - * - */ - -#ifndef __SUBTABLEPROCESSOR2_H -#define __SUBTABLEPROCESSOR2_H - -/** - * \file - * \internal - */ - -#include "LETypes.h" -#include "MorphTables.h" - -U_NAMESPACE_BEGIN - -class LEGlyphStorage; - -class SubtableProcessor2 : public UMemory { -public: - virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success) = 0; - virtual ~SubtableProcessor2(); - -protected: - SubtableProcessor2(const LEReferenceTo &morphSubtableHeader, LEErrorCode &success); - - SubtableProcessor2(); - - le_uint32 length; - SubtableCoverage2 coverage; - FeatureFlags subtableFeatures; - - const LEReferenceTo subtableHeader; - -private: - - SubtableProcessor2(const SubtableProcessor2 &other); // forbid copying of this class - SubtableProcessor2 &operator=(const SubtableProcessor2 &other); // forbid copying of this class -}; - -U_NAMESPACE_END -#endif -