diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-10-26 07:13:09 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-10-26 07:13:09 +0000 |
commit | 74cc05c672add53f566ac385f117008e8c4b3eda (patch) | |
tree | ce973a7d2e4814a20d52a55b1a2131d1515e9911 /Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h | |
parent | 6439fb8917718c4d620170e1459a1d9e7ab3c441 (diff) |
icu 50.1 (50_rc)
git-svn-id: svn://tug.org/texlive/trunk@28087 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h')
-rw-r--r-- | Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h b/Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h new file mode 100644 index 00000000000..7e2028c98b5 --- /dev/null +++ b/Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h @@ -0,0 +1,58 @@ +/* + * + * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved + * + */ + +#ifndef __SEGMENTARRAYPROCESSOR_H +#define __SEGMENTARRAYPROCESSOR_H + +/** + * \file + * \internal + */ + +#include "LETypes.h" +#include "MorphTables.h" +#include "SubtableProcessor.h" +#include "NonContextualGlyphSubst.h" +#include "NonContextualGlyphSubstProc.h" + +U_NAMESPACE_BEGIN + +class LEGlyphStorage; + +class SegmentArrayProcessor : public NonContextualGlyphSubstitutionProcessor +{ +public: + virtual void process(LEGlyphStorage &glyphStorage); + + SegmentArrayProcessor(const MorphSubtableHeader *morphSubtableHeader); + + virtual ~SegmentArrayProcessor(); + + /** + * ICU "poor man's RTTI", returns a UClassID for the actual class. + * + * @stable ICU 2.8 + */ + virtual UClassID getDynamicClassID() const; + + /** + * ICU "poor man's RTTI", returns a UClassID for this class. + * + * @stable ICU 2.8 + */ + static UClassID getStaticClassID(); + +private: + SegmentArrayProcessor(); + +protected: + const SegmentArrayLookupTable *segmentArrayLookupTable; + +}; + +U_NAMESPACE_END +#endif + |