From 7597bb8b2db9a56d06d94837d9d7f84a3a6c773c Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 8 Sep 2015 16:02:54 +0800 Subject: import chewing_enum.h.in --- scripts2/templates/chewing_enum.h.in | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 scripts2/templates/chewing_enum.h.in (limited to 'scripts2') diff --git a/scripts2/templates/chewing_enum.h.in b/scripts2/templates/chewing_enum.h.in new file mode 100644 index 0000000..46072df --- /dev/null +++ b/scripts2/templates/chewing_enum.h.in @@ -0,0 +1,45 @@ +#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 -- cgit