]> git.tdb.fi Git - libs/core.git/blobdiff - source/jisx0208.h
Further style and comment adjustments
[libs/core.git] / source / jisx0208.h
index 27609e619ddc1dcd3e0669e98f0cd26090b18548..0c4c4a6d06ea04a86ba3a9f5c4b80de1c44b1404 100644 (file)
@@ -24,7 +24,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 &);
@@ -33,22 +34,25 @@ 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 "JIS X 0208"; }
 
-       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); }
 };
 
+
 struct Kuten
 {
        unsigned short ku;
        unsigned short ten;
 
        Kuten(): ku(0), ten(0) { }
+
        operator bool() { return ku!=0 && ten!=0; }
 };