]> git.saurik.com Git - apple/icu.git/blame - icuSources/layout/SegmentArrayProcessor.h
ICU-531.48.tar.gz
[apple/icu.git] / icuSources / layout / SegmentArrayProcessor.h
CommitLineData
b75a7d8f 1/*
b75a7d8f 2 *
57a6839d 3 * (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved
b75a7d8f
A
4 *
5 */
6
7#ifndef __SEGMENTARRAYPROCESSOR_H
8#define __SEGMENTARRAYPROCESSOR_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
374ca955
A
23class LEGlyphStorage;
24
b75a7d8f
A
25class SegmentArrayProcessor : public NonContextualGlyphSubstitutionProcessor
26{
27public:
57a6839d 28 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success);
b75a7d8f 29
57a6839d 30 SegmentArrayProcessor(const LEReferenceTo<MorphSubtableHeader> &morphSubtableHeader, LEErrorCode &success);
b75a7d8f
A
31
32 virtual ~SegmentArrayProcessor();
33
34 /**
35 * ICU "poor man's RTTI", returns a UClassID for the actual class.
36 *
374ca955 37 * @stable ICU 2.8
b75a7d8f 38 */
374ca955 39 virtual UClassID getDynamicClassID() const;
b75a7d8f
A
40
41 /**
42 * ICU "poor man's RTTI", returns a UClassID for this class.
43 *
374ca955 44 * @stable ICU 2.8
b75a7d8f 45 */
374ca955 46 static UClassID getStaticClassID();
b75a7d8f
A
47
48private:
49 SegmentArrayProcessor();
50
51protected:
57a6839d 52 LEReferenceTo<SegmentArrayLookupTable> segmentArrayLookupTable;
b75a7d8f 53
b75a7d8f
A
54};
55
56U_NAMESPACE_END
57#endif
58