]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/layout/TrimmedArrayProcessor.h
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / layout / TrimmedArrayProcessor.h
... / ...
CommitLineData
1/*
2 *
3 * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
4 *
5 */
6
7#ifndef __TRIMMEDARRAYPROCESSOR_H
8#define __TRIMMEDARRAYPROCESSOR_H
9
10/**
11 * \file
12 * \internal
13 */
14
15#include "LETypes.h"
16#include "MorphTables.h"
17#include "SubtableProcessor.h"
18#include "NonContextualGlyphSubst.h"
19#include "NonContextualGlyphSubstProc.h"
20
21U_NAMESPACE_BEGIN
22
23class LEGlyphStorage;
24
25class TrimmedArrayProcessor : public NonContextualGlyphSubstitutionProcessor
26{
27public:
28 virtual void process(LEGlyphStorage &glyphStorage);
29
30 TrimmedArrayProcessor(const MorphSubtableHeader *morphSubtableHeader);
31
32 virtual ~TrimmedArrayProcessor();
33
34 /**
35 * ICU "poor man's RTTI", returns a UClassID for the actual class.
36 *
37 * @stable ICU 2.8
38 */
39 virtual UClassID getDynamicClassID() const;
40
41 /**
42 * ICU "poor man's RTTI", returns a UClassID for this class.
43 *
44 * @stable ICU 2.8
45 */
46 static UClassID getStaticClassID();
47
48private:
49 TrimmedArrayProcessor();
50
51protected:
52 TTGlyphID firstGlyph;
53 TTGlyphID lastGlyph;
54 const TrimmedArrayLookupTable *trimmedArrayLookupTable;
55
56};
57
58U_NAMESPACE_END
59#endif
60