X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fstringcodec%2Futf8.h;fp=source%2Fstringcodec%2Futf8.h;h=c3f4a5930014f46c5d3a46318d2cf5c4f17ef4c6;hp=f170916f1d6c6d39ee1c1eb3d46f77df7068951e;hb=6af098355f2b037a6f8084f9f6c741e462ffa614;hpb=5d51c374869f13f762039f58c03f3c5d75c12f07 diff --git a/source/stringcodec/utf8.h b/source/stringcodec/utf8.h index f170916..c3f4a59 100644 --- a/source/stringcodec/utf8.h +++ b/source/stringcodec/utf8.h @@ -1,15 +1,16 @@ #ifndef MSP_STRINGCODEC_UTF8_H_ #define MSP_STRINGCODEC_UTF8_H_ +#include #include "codec.h" namespace Msp { namespace StringCodec { -class Utf8: public StandardCodec +class MSPCORE_API Utf8: public StandardCodec { public: - class Encoder: public Codec::Encoder + class MSPCORE_API Encoder: public Codec::Encoder { public: Encoder(ErrorMode em = DEFAULT): Codec::Encoder(em) { } @@ -19,7 +20,7 @@ public: void transliterate(unichar, std::string &) override; }; - class Decoder: public Codec::Decoder + class MSPCORE_API Decoder: public Codec::Decoder { public: Decoder(ErrorMode em = DEFAULT): Codec::Decoder(em) { }