| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #pragma once |
|
|
| |
| #if defined(_MSC_VER) && (_MSC_VER >= 1020) |
| #pragma warning(disable : 4251 4266 4350 4503 4512 4514 4710 4820) |
| #endif |
|
|
| #include <cstddef> |
| #include <memory> |
| #include <string> |
| #include <vector> |
|
|
| #include "Export.hpp" |
| #include "Optional.hpp" |
| #include "opencc_config.h" |
|
|
| |
| namespace opencc { |
| class Config; |
| class Conversion; |
| class ConversionChain; |
| class Converter; |
| class Dict; |
| class DictEntry; |
| class DictGroup; |
| class Lexicon; |
| class MarisaDict; |
| class MultiValueDictEntry; |
| class NoValueDictEntry; |
| class Segmentation; |
| class Segments; |
| class SerializableDict; |
| class SingleValueDictEntry; |
| class TextDict; |
| typedef std::shared_ptr<Conversion> ConversionPtr; |
| typedef std::shared_ptr<ConversionChain> ConversionChainPtr; |
| typedef std::shared_ptr<Converter> ConverterPtr; |
| typedef std::shared_ptr<Dict> DictPtr; |
| typedef std::shared_ptr<DictGroup> DictGroupPtr; |
| typedef std::shared_ptr<Lexicon> LexiconPtr; |
| typedef std::shared_ptr<MarisaDict> MarisaDictPtr; |
| typedef std::shared_ptr<Segmentation> SegmentationPtr; |
| typedef std::shared_ptr<Segments> SegmentsPtr; |
| typedef std::shared_ptr<SerializableDict> SerializableDictPtr; |
| typedef std::shared_ptr<TextDict> TextDictPtr; |
|
|
| #ifdef OPENCC_ENABLE_DARTS |
| class BinaryDict; |
| class DartsDict; |
| typedef std::shared_ptr<BinaryDict> BinaryDictPtr; |
| typedef std::shared_ptr<DartsDict> DartsDictPtr; |
| #endif |
|
|
| } |
|
|
| #ifndef PKGDATADIR |
| const std::string PACKAGE_DATA_DIRECTORY = ""; |
| #else |
| const std::string PACKAGE_DATA_DIRECTORY = PKGDATADIR "/"; |
| #endif |
|
|
| #ifndef VERSION |
| #define VERSION "1.0.*" |
| #endif |
|
|