summaryrefslogtreecommitdiffstats
path: root/scripts/chewing_enum.h.in
blob: 7280b65bcaa76155467b721bcab556fb5b3415bc (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
/* This file is generated by python scripts. Don't edit this file directly.
 */

#ifndef CHEWING_ENUM_H
#define CHEWING_ENUM_H

namespace pinyin{

/**
 * @brief enums of chewing initial element.
 */

enum ChewingInitial
{
@CHEWING_INITIAL@
};


/**
 * @brief enums of chewing middle element.
 */

enum ChewingMiddle
{
@CHEWING_MIDDLE@
};


/**
 * @brief enums of chewing final element.
 */
enum ChewingFinal
{
@CHEWING_FINAL@
};


/**
 * @brief enums of chewing tone element.
 */
enum ChewingTone
{
@CHEWING_TONE@
};

};

#endif