summaryrefslogtreecommitdiffstats
path: root/src/ZYRawEditor.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-02-17 16:15:20 +0800
committerPeng Wu <alexepico@gmail.com>2014-02-17 16:15:20 +0800
commit1198e8342b43d318fa20e913aec0a5648c73a562 (patch)
treec9f8d7b92c93414fa09b908d2969d2a1c22551a2 /src/ZYRawEditor.h
parentdf43abcc8f1ef44671eef83ac24ccafd90b540b1 (diff)
downloadibus-libzhuyin-1198e8342b43d318fa20e913aec0a5648c73a562.tar.gz
ibus-libzhuyin-1198e8342b43d318fa20e913aec0a5648c73a562.tar.xz
ibus-libzhuyin-1198e8342b43d318fa20e913aec0a5648c73a562.zip
import ZYRawEditor.h
Diffstat (limited to 'src/ZYRawEditor.h')
-rw-r--r--src/ZYRawEditor.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/ZYRawEditor.h b/src/ZYRawEditor.h
new file mode 100644
index 0000000..1a1fa7c
--- /dev/null
+++ b/src/ZYRawEditor.h
@@ -0,0 +1,35 @@
+/* vim:set et ts=4 sts=4:
+ *
+ * ibus-libzhuyin - New Zhuyin engine based on libzhuyin for IBus
+ *
+ * Copyright (c) 2008-2010 Peng Huang <shawn.p.huang@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, 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 __ZY_RAW_EDITOR_
+#define __ZY_RAW_EDITOR_
+
+#include "ZYEditor.h"
+
+namespace ZY {
+
+class RawEditor : public Editor {
+public:
+ RawEditor (ZhuyinProperties &props, Config & config)
+ : Editor (props, config) { }
+};
+
+};
+#endif