]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/ascii.h
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / ascii.h
index 0fee50e8873246b8d8620009546217a5924457c0..91f903115e3497e46a54516b9335ac9993523c75 100644 (file)
@@ -1,17 +1,10 @@
-/* $Id$
-
-This file is part of libmspstrings
-Copyright © 2006-2007 Mikko Rasa
-Distributed under the LGPL
-*/
-
-#ifndef MSP_STRINGS_ASCII_H_
-#define MSP_STRINGS_ASCII_H_
+#ifndef MSP_STRINGCODEC_ASCII_H_
+#define MSP_STRINGCODEC_ASCII_H_
 
 #include "codec.h"
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 class Ascii: public Codec
 {
@@ -40,7 +33,7 @@ public:
        virtual Decoder *create_decoder(ErrorMode em = THROW_ON_ERROR) const { return new Decoder(em); }
 };
 
-} // namespace Codecs
+} // namespace StringCodec
 } // namespace Msp
 
 #endif