]> git.saurik.com Git - apple/icu.git/blob - icuSources/layout/HebrewShaping.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / layout / HebrewShaping.h
1 /*
2 * %W% %E%
3 *
4 * (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
5 *
6 */
7
8 #ifndef __HEBREWSHAPING_H
9 #define __HEBREWSHAPING_H
10
11 /**
12 * \file
13 * \internal
14 */
15
16 #include "LETypes.h"
17 #include "OpenTypeTables.h"
18
19 U_NAMESPACE_BEGIN
20
21 class HebrewShaping /* not : public UObject because all methods are static */ {
22 public:
23 static void shape(const LEUnicode *chars, le_int32 offset, le_int32 charCount, le_int32 charMax,
24 le_bool rightToLeft, const LETag **tags);
25
26 static const le_uint8 glyphSubstitutionTable[];
27 static const le_uint8 glyphDefinitionTable[];
28
29 private:
30 // forbid instantiation
31 HebrewShaping();
32 };
33
34 U_NAMESPACE_END
35 #endif