]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/iso2022jp.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / stringcodec / iso2022jp.h
index a9bc1c2d513d37bb20486009bb6964764836d5e4..0bb1ad3f559f220f4a5e115ab6bcaafd5ff3ba96 100644 (file)
@@ -1,12 +1,13 @@
 #ifndef MSP_STRINGCODEC_ISO2022JP_H_
 #define MSP_STRINGCODEC_ISO2022JP_H_
 
+#include <msp/core/mspcore_api.h>
 #include "codec.h"
 
 namespace Msp {
 namespace StringCodec {
 
-class Iso2022Jp: public StandardCodec<Iso2022Jp>
+class MSPCORE_API Iso2022Jp: public StandardCodec<Iso2022Jp>
 {
 public:
        enum Mode
@@ -16,7 +17,7 @@ public:
                JISX0208
        };
 
-       class Encoder: public Codec::Encoder
+       class MSPCORE_API Encoder: public Codec::Encoder
        {
        private:
                Mode mode = ASCII;
@@ -32,7 +33,7 @@ public:
                void transliterate(unichar, std::string &) override;
        };
 
-       class Decoder: public Codec::Decoder
+       class MSPCORE_API Decoder: public Codec::Decoder
        {
        private:
                Mode mode = ASCII;