summaryrefslogtreecommitdiffstats
path: root/scripts/chewing_enum.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/chewing_enum.h.in')
-rw-r--r--scripts/chewing_enum.h.in39
1 files changed, 39 insertions, 0 deletions
diff --git a/scripts/chewing_enum.h.in b/scripts/chewing_enum.h.in
index dc230ae..7280b65 100644
--- a/scripts/chewing_enum.h.in
+++ b/scripts/chewing_enum.h.in
@@ -4,6 +4,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