summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-05-03 14:59:24 +0800
committerPeng Wu <alexepico@gmail.com>2016-05-03 14:59:24 +0800
commit8a86d87ed0247ea5fd041702c12f2980818cdd98 (patch)
tree2849b90cdbbc3aafb613e1762b4ae8995bc3338a
parente8c7c29acb9f039d97fff5ca7872564c754f535e (diff)
downloadlibpinyin-8a86d87ed0247ea5fd041702c12f2980818cdd98.tar.gz
libpinyin-8a86d87ed0247ea5fd041702c12f2980818cdd98.tar.xz
libpinyin-8a86d87ed0247ea5fd041702c12f2980818cdd98.zip
add phonetic_key_matrix.h
-rw-r--r--src/storage/phonetic_key_matrix.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/storage/phonetic_key_matrix.h b/src/storage/phonetic_key_matrix.h
new file mode 100644
index 0000000..99c6bc6
--- /dev/null
+++ b/src/storage/phonetic_key_matrix.h
@@ -0,0 +1,29 @@
+/*
+ * libpinyin
+ * Library to deal with pinyin.
+ *
+ * Copyright (C) 2016 Peng Wu <alexepico@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef PHONETIC_KEY_MATRIX_H
+#define PHONETIC_KEY_MATRIX_H
+
+template<struct Item>
+class PhoneticTable {
+};
+
+#endif