X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fiso88591.h;h=1adf605fce3e040176f469871b100e601a91b1e7;hb=47df471884234130a2a27f0a5fc842df3f994a3e;hp=ff82df4378e419cbdb385f49c224462d66bb92d7;hpb=6cbf9d2160a9f8e1ef98acb63ead3a14c88e2703;p=libs%2Fcore.git diff --git a/source/iso88591.h b/source/iso88591.h index ff82df4..1adf605 100644 --- a/source/iso88591.h +++ b/source/iso88591.h @@ -11,30 +11,32 @@ Distributed under the LGPL #include "codec.h" namespace Msp { +namespace Codecs { -class Iso88591: public StringCodec +class Iso88591: public Codec { public: - class Encoder: public StringCodec::Encoder + class Encoder: public Codec::Encoder { public: - Encoder(ErrorMode em=THROW_ON_ERROR): StringCodec::Encoder(em) { } - void encode_char(wchar_t); + Encoder(ErrorMode em=THROW_ON_ERROR): Codec::Encoder(em) { } + virtual void encode_char(UnicodeChar, std::string &); private: - void append_replacement() { append(032); } + virtual void transliterate(UnicodeChar, std::string &); }; - class Decoder: public StringCodec::Decoder + class Decoder: public Codec::Decoder { public: - Decoder(ErrorMode em=THROW_ON_ERROR): StringCodec::Decoder(em) { } - void decode_char(const std::string &, std::string::const_iterator &); + Decoder(ErrorMode em=THROW_ON_ERROR): Codec::Decoder(em) { } + virtual UnicodeChar decode_char(const std::string &, std::string::const_iterator &); }; Encoder *create_encoder(ErrorMode em=THROW_ON_ERROR) const { return new Encoder(em); } Decoder *create_decoder(ErrorMode em=THROW_ON_ERROR) const { return new Decoder(em); } }; +} // namespace Codecs } // namespace Msp #endif