X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/249c4c5ea9376c24572daf9c2effa7484a282f14..3d1f044b704633e2e541231cd17ae9ecf9ad5c7a:/icuSources/layout/StateTableProcessor.h?ds=inline diff --git a/icuSources/layout/StateTableProcessor.h b/icuSources/layout/StateTableProcessor.h deleted file mode 100644 index bed87bd8..00000000 --- a/icuSources/layout/StateTableProcessor.h +++ /dev/null @@ -1,59 +0,0 @@ -/* - * - * (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved - * - */ - -#ifndef __STATETABLEPROCESSOR_H -#define __STATETABLEPROCESSOR_H - -/** - * \file - * \internal - */ - -#include "LETypes.h" -#include "MorphTables.h" -#include "MorphStateTables.h" -#include "SubtableProcessor.h" - -U_NAMESPACE_BEGIN - -class LEGlyphStorage; - -class StateTableProcessor : public SubtableProcessor -{ -public: - void process(LEGlyphStorage &glyphStorage, LEErrorCode &success); - - virtual void beginStateTable() = 0; - - virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index) = 0; - - virtual void endStateTable() = 0; - -protected: - StateTableProcessor(const LEReferenceTo &morphSubtableHeader, LEErrorCode &success); - virtual ~StateTableProcessor(); - - StateTableProcessor(); - - le_int16 stateSize; - ByteOffset classTableOffset; - ByteOffset stateArrayOffset; - ByteOffset entryTableOffset; - - LEReferenceTo classTable; - TTGlyphID firstGlyph; - TTGlyphID lastGlyph; - - LEReferenceTo stateTableHeader; - LEReferenceTo stHeader; // for convenience - -private: - StateTableProcessor(const StateTableProcessor &other); // forbid copying of this class - StateTableProcessor &operator=(const StateTableProcessor &other); // forbid copying of this class -}; - -U_NAMESPACE_END -#endif