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