From 74cc05c672add53f566ac385f117008e8c4b3eda Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Fri, 26 Oct 2012 07:13:09 +0000 Subject: icu 50.1 (50_rc) git-svn-id: svn://tug.org/texlive/trunk@28087 c570f23f-e606-0410-a88d-b1316a301751 --- .../icu/icu-50.1/layout/SegmentArrayProcessor.h | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h (limited to 'Build/source/libs/icu/icu-50.1/layout/SegmentArrayProcessor.h') 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 + -- cgit v1.2.3