summaryrefslogtreecommitdiffstats
path: root/src/ZYZPhoneticEditor.h
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2014-04-16 14:58:08 +0800
committerPeng Wu <alexepico@gmail.com>2014-04-16 14:58:08 +0800
commit741ac19c54f0cf8d3ac16819a2de34c9c3b79023 (patch)
tree537d409342399149c97435476ea36e35bc6d7048 /src/ZYZPhoneticEditor.h
parent63f62cc58c3bde41e94196c93735b788502b9e40 (diff)
downloadibus-libzhuyin-741ac19c54f0cf8d3ac16819a2de34c9c3b79023.tar.gz
ibus-libzhuyin-741ac19c54f0cf8d3ac16819a2de34c9c3b79023.tar.xz
ibus-libzhuyin-741ac19c54f0cf8d3ac16819a2de34c9c3b79023.zip
fixes compile
Diffstat (limited to 'src/ZYZPhoneticEditor.h')
-rw-r--r--src/ZYZPhoneticEditor.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ZYZPhoneticEditor.h b/src/ZYZPhoneticEditor.h
index bcba643..ecd6f85 100644
--- a/src/ZYZPhoneticEditor.h
+++ b/src/ZYZPhoneticEditor.h
@@ -25,6 +25,7 @@
#include <zhuyin.h>
#include "ZYLookupTable.h"
#include "ZYZEnhancedEditor.h"
+#include <vector>
namespace ZY {
@@ -40,7 +41,7 @@ class PhoneticEditor : public EnhancedEditor {
public:
PhoneticEditor (ZhuyinProperties & props, Config & config);
- virtual ~PhoneticEditor ();
+ virtual ~PhoneticEditor (void);
public:
/* virtual functions */
@@ -95,6 +96,8 @@ protected:
SymbolSectionPtr m_symbol_sections[STATE_LAST];
PhoneticSectionPtr m_phonetic_section;
+
+ std::vector<zhuyin_instance_t *> m_instances;
};
};