summaryrefslogtreecommitdiffstats
path: root/scripts2
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2015-09-08 16:02:54 +0800
committerPeng Wu <alexepico@gmail.com>2015-09-08 16:02:54 +0800
commit7597bb8b2db9a56d06d94837d9d7f84a3a6c773c (patch)
treeff7c0230766ee273b0f1e8b73ab6d5f34d1d5d54 /scripts2
parentde99332cb5171628ff6f8968576bc9235121a876 (diff)
downloadlibpinyin-7597bb8b2db9a56d06d94837d9d7f84a3a6c773c.tar.gz
libpinyin-7597bb8b2db9a56d06d94837d9d7f84a3a6c773c.tar.xz
libpinyin-7597bb8b2db9a56d06d94837d9d7f84a3a6c773c.zip
import chewing_enum.h.in
Diffstat (limited to 'scripts2')
-rw-r--r--scripts2/templates/chewing_enum.h.in45
1 files changed, 45 insertions, 0 deletions
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