]> git.saurik.com Git - apple/icu.git/blame - icuSources/layout/SimpleArrayProcessor2.h
ICU-59180.0.1.tar.gz
[apple/icu.git] / icuSources / layout / SimpleArrayProcessor2.h
CommitLineData
51004dcb
A
1/*
2 *
b331163b 3 * (C) Copyright IBM Corp. and others 1998-2014 - All Rights Reserved
51004dcb
A
4 *
5 */
6
7#ifndef __SIMPLEARRAYPROCESSOR2_H
8#define __SIMPLEARRAYPROCESSOR2_H
9
10/**
11 * \file
12 * \internal
13 */
14
15#include "LETypes.h"
16#include "MorphTables.h"
17#include "SubtableProcessor2.h"
18#include "NonContextualGlyphSubst.h"
19#include "NonContextualGlyphSubstProc2.h"
20
21U_NAMESPACE_BEGIN
22
23class LEGlyphStorage;
24
25class SimpleArrayProcessor2 : public NonContextualGlyphSubstitutionProcessor2
26{
27public:
57a6839d 28 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success);
51004dcb 29
57a6839d 30 SimpleArrayProcessor2(const LEReferenceTo<MorphSubtableHeader2> &morphSubtableHeader, LEErrorCode &success);
51004dcb
A
31
32 virtual ~SimpleArrayProcessor2();
33
34 /**
35 * ICU "poor man's RTTI", returns a UClassID for the actual class.
36 *
b331163b 37 * @deprecated ICU 54. See {@link icu::LayoutEngine}
51004dcb
A
38 */
39 virtual UClassID getDynamicClassID() const;
40
41 /**
42 * ICU "poor man's RTTI", returns a UClassID for this class.
43 *
b331163b 44 * @deprecated ICU 54. See {@link icu::LayoutEngine}
51004dcb
A
45 */
46 static UClassID getStaticClassID();
47
48private:
49 SimpleArrayProcessor2();
50
51protected:
57a6839d
A
52 LEReferenceTo<SimpleArrayLookupTable> simpleArrayLookupTable;
53 LEReferenceToArrayOf<LookupValue> valueArray;
51004dcb
A
54
55};
56
57U_NAMESPACE_END
58#endif
59