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