]> git.tdb.fi Git - libs/core.git/blobdiff - source/stringcodec/utf8.h
Rewrite string codec utility functions more compactly
[libs/core.git] / source / stringcodec / utf8.h
index 0281b314069f320259e063ac8c2cc0c28a1ec1cd..b976291b23cc1d0c3990e5de05e25e56abaeced3 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_UTF8_H_
-#define MSP_STRINGS_UTF8_H_
+#ifndef MSP_STRINGCODEC_UTF8_H_
+#define MSP_STRINGCODEC_UTF8_H_
 
 #include "codec.h"
 
 namespace Msp {
-namespace Codecs {
+namespace StringCodec {
 
 class Utf8: 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