]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/iso88591.cpp
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / iso88591.cpp
index 064d4a76792eae33f12ee45a802187fc66a56750..19c1b8908131ec443d091f00685db282a0401986 100644 (file)
@@ -1,16 +1,9 @@
-/* $Id$
-
-This file is part of libmspstrings
-Copyright © 2006-2007 Mikko Rasa
-Distributed under the LGPL
-*/
-
 #include "iso88591.h"
 
 using namespace std;
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 void Iso88591::Encoder::encode_char(UnicodeChar ch, string &buf)
 {
@@ -34,5 +27,5 @@ UnicodeChar Iso88591::Decoder::decode_char(const string &str, string::const_iter
        return static_cast<unsigned char>(*i++);
 }
 
-} // namespace Codecs
+} // namespace StringCodec
 } // namespace Msp