]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/ascii.cpp
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / ascii.cpp
index d7da520e309331f3e59a803e0356fb8ab775adef..84e44fcb6899f4c8bbe7cc4538ab08a1ccf95dcc 100644 (file)
@@ -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