]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/windows1252.h
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / windows1252.h
index 47b2cf0f8e2805e7dfd463bc06a45158853f5d6f..e764965f6a882e6a5d21da672c4a7207529897e8 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_WINDOWS1252_H_
-#define MSP_STRINGS_WINDOWS1252_H_
+#ifndef MSP_STRINGCODEC_WINDOWS1252_H_
+#define MSP_STRINGCODEC_WINDOWS1252_H_
 
 #include "codec.h"
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 class Windows1252: 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