summaryrefslogtreecommitdiffstats
path: root/scripts/chewing_table.h.in
blob: d4dbcfc31781d20a3f8539d0f646d0d26b27e154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#ifndef CHEWING_TABLE_H
#define CHEWING_TABLE_H

namespace zhuyin{

const chewing_symbol_item_t chewing_standard_symbols[] = {
@STANDARD_SYMBOLS@
};

const chewing_tone_item_t chewing_standard_tones[] = {
@STANDARD_TONES@
};

const chewing_symbol_item_t chewing_ginyieh_symbols[] = {
@GINYIEH_SYMBOLS@
};

const chewing_tone_item_t chewing_ginyieh_tones[] = {
@GINYIEH_TONES@
};

const chewing_symbol_item_t chewing_eten_symbols[] = {
@ETEN_SYMBOLS@
};

const chewing_tone_item_t chewing_eten_tones[] = {
@ETEN_TONES@
};

const chewing_symbol_item_t chewing_ibm_symbols[] = {
@IBM_SYMBOLS@
};

const chewing_tone_item_t chewing_ibm_tones[] = {
@IBM_TONES@
};

const chewing_symbol_item_t chewing_hsu_initials[] = {
@HSU_INITIALS@
};

const chewing_symbol_item_t chewing_hsu_middles[] = {
@HSU_MIDDLES@
};

const chewing_symbol_item_t chewing_hsu_finals[] = {
@HSU_FINALS@
};

const chewing_tone_item_t chewing_hsu_tones[] = {
@HSU_TONES@
};

const chewing_symbol_item_t chewing_eten26_initials[] = {
@ETEN26_INITIALS@
};

const chewing_symbol_item_t chewing_eten26_middles[] = {
@ETEN26_MIDDLES@
};

const chewing_symbol_item_t chewing_eten26_finals[] = {
@ETEN26_FINALS@
};

const chewing_tone_item_t chewing_eten26_tones[] = {
@ETEN26_TONES@
};

const chewing_symbol_item_t chewing_standard_dvorak_symbols[] = {
@Dvorak-STANDARD_SYMBOLS@
};

const chewing_tone_item_t chewing_standard_dvorak_tones[] = {
@Dvorak-STANDARD_TONES@
};

const chewing_symbol_item_t chewing_hsu_dvorak_initials[] = {
@Dvorak-HSU_INITIALS@
};

const chewing_symbol_item_t chewing_hsu_dvorak_middles[] = {
@Dvorak-HSU_MIDDLES@
};

const chewing_symbol_item_t chewing_hsu_dvorak_finals[] = {
@Dvorak-HSU_FINALS@
};

const chewing_tone_item_t chewing_hsu_dvorak_tones[] = {
@Dvorak-HSU_TONES@
};

const chewing_symbol_item_t chewing_dachen_cp26_initials[] = {
@DACHEN-CP26_INITIALS@
};

const chewing_symbol_item_t chewing_dachen_cp26_middles[] = {
@DACHEN-CP26_MIDDLES@
};

const chewing_symbol_item_t chewing_dachen_cp26_finals[] = {
@DACHEN-CP26_FINALS@
};

const chewing_tone_item_t chewing_dachen_cp26_tones[] = {
@DACHEN-CP26_TONES@
};

const char * chewing_tone_table[CHEWING_NUMBER_OF_TONES] = {
"",
"ˉ",
"ˊ",
"ˇ",
"ˋ",
"˙"
};

};

#endif