File: pinyin_parser_table.h.in

package info (click to toggle)
libpinyin 1.0.0%2Brepack2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 86,276 kB
  • ctags: 1,344
  • sloc: cpp: 16,742; python: 1,549; makefile: 266; ansic: 93; sh: 20
file content (34 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (2)
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
#ifndef PINYIN_PARSER_TABLE_H
#define PINYIN_PARSER_TABLE_H

namespace pinyin{

const pinyin_index_item_t pinyin_index[] = {
@PINYIN_INDEX@
};

const chewing_index_item_t chewing_index[] = {
@BOPOMOFO_INDEX@
};

const content_table_item_t content_table[] = {
@CONTENT_TABLE@
};

const divided_table_item_t divided_table[] = {
@DIVIDED_TABLE@
};

const resplit_table_item_t resplit_table[] = {
@RESPLIT_TABLE@
};

const gint chewing_key_table[CHEWING_NUMBER_OF_INITIALS *
                             CHEWING_NUMBER_OF_MIDDLES *
                             CHEWING_NUMBER_OF_FINALS] = {
@TABLE_INDEX@
};

};

#endif