File: chewing_table.h.in

package info (click to toggle)
libpinyin 0.6.91-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 41,840 kB
  • sloc: cpp: 14,520; python: 1,505; makefile: 284; ansic: 166; awk: 6; sh: 6
file content (41 lines) | stat: -rw-r--r-- 672 bytes parent folder | download
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
#ifndef CHEWING_TABLE_H
#define CHEWING_TABLE_H

namespace pinyin{

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@
};

};

#endif