librime 1.2
Rime Input Method Engine, the core library
ascii_segmentor.h
Go to the documentation of this file.
1//
2// Copyright RIME Developers
3// Distributed under the BSD License
4//
5// 2011-12-18 GONG Chen <chen.sst@gmail.com>
6//
7#ifndef RIME_ASCII_SEGMENTOR_H_
8#define RIME_ASCII_SEGMENTOR_H_
9
10#include <rime/segmentor.h>
11
12namespace rime {
13
14class AsciiSegmentor : public Segmentor {
15 public:
16 explicit AsciiSegmentor(const Ticket& ticket);
17
18 virtual bool Proceed(Segmentation* segmentation);
19};
20
21} // namespace rime
22
23#endif // RIME_ASCII_SEGMENTOR_H_
Definition algebra.cc:12
virtual bool Proceed(Segmentation *segmentation)
Definition ascii_segmentor.cc:19
AsciiSegmentor(const Ticket &ticket)
Definition ascii_segmentor.cc:17
Definition segmentation.h:60
Segmentor(const Ticket &ticket)
Definition segmentor.h:20
Definition ticket.h:17