Open Chinese Convert 1.4.0
A project for conversion between Traditional and Simplified Chinese
Loading...
Searching...
No Matches
Common.hpp
1/*
2 * Open Chinese Convert
3 *
4 * Copyright 2010-2014 Carbo Kuo <byvoid@byvoid.com>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19#pragma once
20
21// Microsoft Visual C++ specific
22#if defined(_MSC_VER) && (_MSC_VER >= 1020)
23#pragma warning(disable : 4251 4266 4350 4503 4512 4514 4710 4820)
24#endif
25
26#include <cstddef>
27#include <memory>
28#include <string>
29#include <vector>
30
31#include "Export.hpp"
32#include "Optional.hpp"
33
34// Forward decalarations and alias
35namespace opencc {
36class Config;
37class Conversion;
38class ConversionChain;
39class Converter;
40class Dict;
41class DictEntry;
42class DictGroup;
43class Lexicon;
44class MarisaDict;
47class Segmentation;
48class Segments;
51class TextDict;
52typedef std::shared_ptr<Conversion> ConversionPtr;
53typedef std::shared_ptr<ConversionChain> ConversionChainPtr;
54typedef std::shared_ptr<Converter> ConverterPtr;
55typedef std::shared_ptr<Dict> DictPtr;
56typedef std::shared_ptr<DictGroup> DictGroupPtr;
57typedef std::shared_ptr<Lexicon> LexiconPtr;
58typedef std::shared_ptr<MarisaDict> MarisaDictPtr;
59typedef std::shared_ptr<Segmentation> SegmentationPtr;
60typedef std::shared_ptr<Segments> SegmentsPtr;
61typedef std::shared_ptr<SerializableDict> SerializableDictPtr;
62typedef std::shared_ptr<TextDict> TextDictPtr;
63
64class BinaryDict;
65class DartsDict;
66typedef std::shared_ptr<BinaryDict> BinaryDictPtr;
67typedef std::shared_ptr<DartsDict> DartsDictPtr;
68
69} // namespace opencc
70
71#ifndef PKGDATADIR
72const std::string PACKAGE_DATA_DIRECTORY = "";
73#else // ifndef PKGDATADIR
74const std::string PACKAGE_DATA_DIRECTORY = PKGDATADIR "/";
75#endif // ifndef PKGDATADIR
76
77#ifndef OPENCC_SEGMENTATION_PLUGIN_DIR
78const std::string PACKAGE_SEGMENTATION_PLUGIN_DIRECTORY = "";
79#else
80const std::string PACKAGE_SEGMENTATION_PLUGIN_DIRECTORY =
81 OPENCC_SEGMENTATION_PLUGIN_DIR "/";
82#endif
83
84#ifndef OPENCC_VERSION
85#define OPENCC_VERSION "1.3.*"
86#endif // ifndef OPENCC_VERSION
Binary dictionary for faster deserialization.
Definition BinaryDict.hpp:29
Configuration loader.
Definition Config.hpp:36
An ordered sequence of Conversion objects applied to pre-segmented text.
Definition ConversionChain.hpp:41
Single-dictionary phrase conversion.
Definition Conversion.hpp:43
Abstract base for full-text converters.
Definition Converter.hpp:48
Darts dictionary.
Definition DartsDict.hpp:29
Key-values pair entry.
Definition DictEntry.hpp:32
Group of dictionaries.
Definition DictGroup.hpp:44
Abstract class of dictionary.
Definition Dict.hpp:63
Storage of all entries.
Definition Lexicon.hpp:29
Darts dictionary.
Definition MarisaDict.hpp:36
Definition DictEntry.hpp:123
Definition DictEntry.hpp:62
Abstract base for text segmentation.
Definition Segmentation.hpp:38
Segmented text.
Definition Segments.hpp:32
Serializable dictionary interface.
Definition SerializableDict.hpp:32
Definition DictEntry.hpp:85
Text dictionary.
Definition TextDict.hpp:29