From 8a86d87ed0247ea5fd041702c12f2980818cdd98 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 3 May 2016 14:59:24 +0800 Subject: add phonetic_key_matrix.h --- src/storage/phonetic_key_matrix.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/storage/phonetic_key_matrix.h (limited to 'src') 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 + * + * 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 +class PhoneticTable { +}; + +#endif -- cgit