]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/codec.h
Rename namespace Codecs to StringCodec
[libs/core.git] / source / stringcodec / codec.h
index e04e909fb7a1fc5c4750db7e13f33f2d44a96f92..ab2a3ea7c8491edc0297ae81ffddd1ae4e20c23e 100644 (file)
@@ -1,18 +1,11 @@
-/* $Id$
-
-This file is part of libmspstrings
-Copyright © 2006-2007 Mikko Rasa
-Distributed under the LGPL
-*/
-
-#ifndef MSP_STRINGS_CODEC_H_
-#define MSP_STRINGS_CODEC_H_
+#ifndef MSP_STRINGCODEC_CODEC_H_
+#define MSP_STRINGCODEC_CODEC_H_
 
 #include <string>
 #include <msp/core/except.h>
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 typedef int UnicodeChar;
 
@@ -199,7 +192,7 @@ Codec *create_codec(const std::string &);
 The codec must be deleted when it's no longer needed. */
 Codec *detect_codec(const std::string &);
 
-} // namespace Codecs
+} // namespace StringCodec
 } // namespace Msp
 
 #endif