X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstringcodec%2Futf8.cpp;h=4d3cea50dab27d33fc8030b18e484c0e620466dc;hb=b011b17393069d86790b2291a759280e15c75a0f;hp=c7e1705f814e2d099d3b0180730c57e3aa210d85;hpb=b42ed73a1b241c0e93ee03c43c4584b41c549bac;p=libs%2Fcore.git diff --git a/source/stringcodec/utf8.cpp b/source/stringcodec/utf8.cpp index c7e1705..4d3cea5 100644 --- a/source/stringcodec/utf8.cpp +++ b/source/stringcodec/utf8.cpp @@ -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