]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/windows1252.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / stringcodec / windows1252.h
index bcea69b7a60e6818cad0bcef0137c10228012d81..b89fdaea1646d7438eebfd52cd97bb45b91dabe5 100644 (file)
@@ -1,15 +1,16 @@
 #ifndef MSP_STRINGCODEC_WINDOWS1252_H_
 #define MSP_STRINGCODEC_WINDOWS1252_H_
 
+#include <msp/core/mspcore_api.h>
 #include "codec.h"
 
 namespace Msp {
 namespace StringCodec {
 
-class Windows1252: public StandardCodec<Windows1252>
+class MSPCORE_API Windows1252: public StandardCodec<Windows1252>
 {
 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) { }