From 56ccde01ab09d6bfb8faa247e7b52d0aaee2c5b0 Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 1 Apr 2014 10:57:58 +0800 Subject: update class SymbolSection --- src/ZYZSymbolSection.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/ZYZSymbolSection.h') diff --git a/src/ZYZSymbolSection.h b/src/ZYZSymbolSection.h index 2acad2f..2b78f48 100644 --- a/src/ZYZSymbolSection.h +++ b/src/ZYZSymbolSection.h @@ -37,11 +37,21 @@ public: virtual bool populateCandidates () = 0; virtual bool selectCandidate (guint index) = 0; +public: + String getType () {return m_type; } + String getLookup () {return m_lookup; } + String getChoice () {return m_choice; } + protected: LookupTable & getLookupTable () { return m_editor.m_lookup_table; } protected: PhoneticEditor & m_editor; + + /* other variables. */ + String m_type; + String m_lookup; + String m_choice; }; }; -- cgit