22 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
23 #pragma warning(disable : 4251 4266 4350 4503 4512 4514 4710 4820)
42 #include "Exception.hpp"
44 #include "Optional.hpp"
55 class ConversionChain;
62 class MultiValueDictEntry;
63 class NoValueDictEntry;
66 class SerializableDict;
67 class SingleValueDictEntry;
69 typedef std::shared_ptr<BinaryDict> BinaryDictPtr;
70 typedef std::shared_ptr<Conversion> ConversionPtr;
71 typedef std::shared_ptr<ConversionChain> ConversionChainPtr;
72 typedef std::shared_ptr<Converter> ConverterPtr;
73 typedef std::shared_ptr<DartsDict> DartsDictPtr;
74 typedef std::shared_ptr<Dict> DictPtr;
75 typedef std::shared_ptr<DictGroup> DictGroupPtr;
76 typedef std::shared_ptr<Lexicon> LexiconPtr;
77 typedef std::shared_ptr<Segmentation> SegmentationPtr;
78 typedef std::shared_ptr<Segments> SegmentsPtr;
79 typedef std::shared_ptr<SerializableDict> SerializableDictPtr;
80 typedef std::shared_ptr<TextDict> TextDictPtr;
84 const string PACKAGE_DATA_DIRECTORY =
"";
85 #else // ifndef PKGDATADIR
86 const string PACKAGE_DATA_DIRECTORY = PKGDATADIR
"/";
87 #endif // ifndef PKGDATADIR
90 # define VERSION "1.0.*"
91 #endif // ifndef VERSION
Definition: BinaryDict.hpp:24