X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fascii.h;h=ecff0dbf96e31bc3aaa6801716323142a9418faf;hp=41af46bf4b6850b56221f7f8c8e6c60e4ff7b0e8;hb=271ffa9434c8d9397bb5170cf1ee670c5265ec60;hpb=9da6abdcabec59f4845da256a8ad75a810ed1589 diff --git a/source/ascii.h b/source/ascii.h index 41af46b..ecff0db 100644 --- a/source/ascii.h +++ b/source/ascii.h @@ -11,30 +11,34 @@ Distributed under the LGPL #include "codec.h" namespace Msp { +namespace Codecs { -class Ascii: public StringCodec +class Ascii: 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); } + virtual const char *get_name() const { return "ASCII"; } + + virtual Encoder *create_encoder(ErrorMode em=THROW_ON_ERROR) const { return new Encoder(em); } + virtual Decoder *create_decoder(ErrorMode em=THROW_ON_ERROR) const { return new Decoder(em); } }; +} // namespace Codecs } // namespace Msp #endif