]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/utf8.cpp
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / utf8.cpp
index c7e1705f814e2d099d3b0180730c57e3aa210d85..4d3cea50dab27d33fc8030b18e484c0e620466dc 100644 (file)
@@ -1,16 +1,9 @@
-/* $Id$
-
-This file is part of libmspstrings
-Copyright © 2006-2007 Mikko Rasa
-Distributed under the LGPL
-*/
-
 #include "utf8.h"
 
 using namespace std;
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 void Utf8::Encoder::encode_char(UnicodeChar ch, string &buf)
 {
@@ -88,5 +81,5 @@ UnicodeChar Utf8::Decoder::decode_char(const string &str, string::const_iterator
                return *i++;
 }
 
-} // namespace Codecs
+} // namespace StringCodec
 } // namespace Msp