]> git.tdb.fi Git - libs/core.git/blobdiff - source/iso646fi.h
Further style and comment adjustments
[libs/core.git] / source / iso646fi.h
index 3047edff021d030e0f655a3cc4d825050e736332..084e57f1c6478af1dfb2385201637271b07999ac 100644 (file)
@@ -19,7 +19,8 @@ public:
        class Encoder: public Codec::Encoder
        {
        public:
-               Encoder(ErrorMode em=THROW_ON_ERROR): Codec::Encoder(em) { }
+               Encoder(ErrorMode em = THROW_ON_ERROR): Codec::Encoder(em) { }
+
                virtual void encode_char(UnicodeChar, std::string &);
        private:
                virtual void transliterate(UnicodeChar, std::string &);
@@ -28,14 +29,15 @@ public:
        class Decoder: public Codec::Decoder
        {
        public:
-               Decoder(ErrorMode em=THROW_ON_ERROR): Codec::Decoder(em) { }
+               Decoder(ErrorMode em = THROW_ON_ERROR): Codec::Decoder(em) { }
+
                virtual UnicodeChar decode_char(const std::string &, std::string::const_iterator &);
        };
 
        virtual const char *get_name() const { return "ISO-646-FI"; }
 
-       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); }
+       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