librime 1.2
Rime Input Method Engine, the core library
schema_list_translator.h
Go to the documentation of this file.
1//
2// Copyright RIME Developers
3// Distributed under the BSD License
4//
5// 2013-05-26 GONG Chen <chen.sst@gmail.com>
6//
7#ifndef RIME_SCHEMA_LIST_TRANSLATOR_H_
8#define RIME_SCHEMA_LIST_TRANSLATOR_H_
9
10#include <rime/common.h>
11#include <rime/translator.h>
12
13namespace rime {
14
16 public:
17 SchemaListTranslator(const Ticket& ticket);
18
19 virtual an<Translation> Query(const string& input, const Segment& segment);
20};
21
22} // namespace rime
23
24#endif // RIME_SCHEMA_LIST_TRANSLATOR_H_
Definition algebra.cc:12
std::shared_ptr< T > an
Definition common.h:60
SchemaListTranslator(const Ticket &ticket)
Definition schema_list_translator.cc:128
virtual an< Translation > Query(const string &input, const Segment &segment)
Definition schema_list_translator.cc:131
Definition segmentation.h:18
Definition ticket.h:17
Translator(const Ticket &ticket)
Definition translator.h:24