summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-03-03 17:11:34 +0800
committerPeng Wu <alexepico@gmail.com>2016-03-03 17:11:34 +0800
commit84e6293dc5d85f0bc9d2623bd3eda7aef97cf39f (patch)
tree9c33aa7af61f6f3f66d559662fb23d79a857fd08
parentd602f8dd52fa4aea9e8f53066483b6bf97168794 (diff)
downloadlibpinyin-84e6293dc5d85f0bc9d2623bd3eda7aef97cf39f.tar.gz
libpinyin-84e6293dc5d85f0bc9d2623bd3eda7aef97cf39f.tar.xz
libpinyin-84e6293dc5d85f0bc9d2623bd3eda7aef97cf39f.zip
add kyotodb_utils.h
-rw-r--r--src/storage/Makefile.am3
-rw-r--r--src/storage/kyotodb_utils.h31
2 files changed, 33 insertions, 1 deletions
diff --git a/src/storage/Makefile.am b/src/storage/Makefile.am
index 687e1dc..7ef7b0b 100644
--- a/src/storage/Makefile.am
+++ b/src/storage/Makefile.am
@@ -56,7 +56,8 @@ noinst_HEADERS = chewing_enum.h \
facade_phrase_table2.h \
facade_phrase_table3.h \
table_info.h \
- bdb_utils.h
+ bdb_utils.h \
+ kyotodb_utils.h
noinst_LTLIBRARIES = libstorage.la
diff --git a/src/storage/kyotodb_utils.h b/src/storage/kyotodb_utils.h
new file mode 100644
index 0000000..66ffe8c
--- /dev/null
+++ b/src/storage/kyotodb_utils.h
@@ -0,0 +1,31 @@
+/*
+ * 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 KYOTODB_UTILS_H
+#define KYOTODB_UTILS_H
+
+#include <assert.h>
+#include <kchashdb.h>
+#include <kcprotodb.h>
+
+
+
+#endif