]> git.saurik.com Git - apple/icu.git/blob - icuSources/layout/NonContextualGlyphSubstProc.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / layout / NonContextualGlyphSubstProc.h
1 /*
2 * @(#)NonContextualGlyphSubstProc.h 1.6 00/03/15
3 *
4 * (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
5 *
6 */
7
8 #ifndef __NONCONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
9 #define __NONCONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
10
11 /**
12 * \file
13 * \internal
14 */
15
16 #include "LETypes.h"
17 #include "MorphTables.h"
18 #include "SubtableProcessor.h"
19 #include "NonContextualGlyphSubst.h"
20
21 U_NAMESPACE_BEGIN
22
23 class NonContextualGlyphSubstitutionProcessor : public SubtableProcessor
24 {
25 public:
26 virtual void process(LEGlyphID *glyphs, le_int32 *charIndices, le_int32 glyphCount) = 0;
27
28 static SubtableProcessor *createInstance(const MorphSubtableHeader *morphSubtableHeader);
29
30 protected:
31 NonContextualGlyphSubstitutionProcessor();
32 NonContextualGlyphSubstitutionProcessor(const MorphSubtableHeader *morphSubtableHeader);
33
34 virtual ~NonContextualGlyphSubstitutionProcessor();
35
36 private:
37 NonContextualGlyphSubstitutionProcessor(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class
38 NonContextualGlyphSubstitutionProcessor &operator=(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class
39 };
40
41 U_NAMESPACE_END
42 #endif