]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/iso88591.h
Rewrite string codec utility functions more compactly
[libs/core.git] / source / stringcodec / iso88591.h
index 4365c0d18081c4dce214fc86d93a65234e07cadb..060a6d4efc19850c09068881572fbe46a83e8aa2 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_ISO88591_H_
-#define MSP_STRINGS_ISO88591_H_
+#ifndef MSP_STRINGCODEC_ISO88591_H_
+#define MSP_STRINGCODEC_ISO88591_H_
 
 #include "codec.h"
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 class Iso88591: public Codec
 {
@@ -40,7 +33,7 @@ public:
        virtual Decoder *create_decoder(ErrorMode em = THROW_ON_ERROR) const { return new Decoder(em); }
 };
 
-} // namespace Codecs
+} // namespace StringCodec
 } // namespace Msp
 
 #endif