]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/iso2022jp.h
Rewrite string codec utility functions more compactly
[libs/core.git] / source / stringcodec / iso2022jp.h
index 8a95f9d461eb96953884f98e3f42a269b5f7bf15..73ffec3e71eda5a158798cc37bbb803ba4d5623c 100644 (file)
@@ -1,17 +1,10 @@
-/* $Id$
-
-This file is part of libmspstrings
-Copyright © 2006-2007 Mikko Rasa
-Distributed under the LGPL
-*/
-
-#ifndef MSP_STRINGS_ISO2022JP_H_
-#define MSP_STRINGS_ISO2022JP_H_
+#ifndef MSP_STRINGCODEC_ISO2022JP_H_
+#define MSP_STRINGCODEC_ISO2022JP_H_
 
 #include "codec.h"
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 class Iso2022Jp: public Codec
 {
@@ -60,7 +53,7 @@ public:
        virtual Decoder *create_decoder(ErrorMode em = THROW_ON_ERROR) const { return new Decoder(em); }
 };
 
-} // namespace Codecs
+} // namespace StringCodec
 } // namespace Msp
 
 #endif