X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstringcodec%2Futf8.h;h=b976291b23cc1d0c3990e5de05e25e56abaeced3;hb=b011b17393069d86790b2291a759280e15c75a0f;hp=0281b314069f320259e063ac8c2cc0c28a1ec1cd;hpb=b42ed73a1b241c0e93ee03c43c4584b41c549bac;p=libs%2Fcore.git diff --git a/source/stringcodec/utf8.h b/source/stringcodec/utf8.h index 0281b31..b976291 100644 --- a/source/stringcodec/utf8.h +++ b/source/stringcodec/utf8.h @@ -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