summaryrefslogtreecommitdiffstats
path: root/src/PinyinEditor.cc
blob: fd4760c209f0fb16a17a1e3776f33d25793a1253 (plain)
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)
{
}

};