X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstringcodec%2Fascii.cpp;h=84e44fcb6899f4c8bbe7cc4538ab08a1ccf95dcc;hb=056dc68dfc606a2c14126a70321045d6d9f12e0e;hp=d7da520e309331f3e59a803e0356fb8ab775adef;hpb=b42ed73a1b241c0e93ee03c43c4584b41c549bac;p=libs%2Fcore.git diff --git a/source/stringcodec/ascii.cpp b/source/stringcodec/ascii.cpp index d7da520..84e44fc 100644 --- a/source/stringcodec/ascii.cpp +++ b/source/stringcodec/ascii.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspstrings -Copyright © 2006-2007 Mikko Rasa -Distributed under the LGPL -*/ - #include "ascii.h" using namespace std; @@ -26,7 +19,7 @@ const char *translit_katakana[0x60]= }*/ namespace Msp { -namespace Codecs { +namespace StringCodec { void Ascii::Encoder::encode_char(UnicodeChar ch, string &buf) { @@ -109,5 +102,5 @@ UnicodeChar Ascii::Decoder::decode_char(const string &str, string::const_iterato return *i++; } -} // namespace Codecs +} // namespace StringCodec } // namespace Msp