1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "Config.h" #include "PinyinEditor.h" namespace PY { #define MAX_PINYIN_LEN 64 PinyinParser PinyinEditor::m_parser; PinyinEditor::PinyinEditor (void) : m_text (MAX_PINYIN_LEN), m_cursor (0), m_pinyin (MAX_PHRASE_LEN), m_pinyin_len (0) { } };