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
|
#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@
};
const char * chewing_tone_table[CHEWING_NUMBER_OF_TONES] = {
"",
"ˉ",
"ˊ",
"ˇ",
"ˋ",
"˙"
};
};
#endif
|