X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fstringcodec%2Futf8.h;h=b976291b23cc1d0c3990e5de05e25e56abaeced3;hb=056dc68dfc606a2c14126a70321045d6d9f12e0e;hp=89eced8db3a315e3e65c7a43ac3133cbafa1881f;hpb=967785734be5c3fc6f75da122c2d93ebbb338271;p=libs%2Fcore.git diff --git a/source/stringcodec/utf8.h b/source/stringcodec/utf8.h index 89eced8..b976291 100644 --- a/source/stringcodec/utf8.h +++ b/source/stringcodec/utf8.h @@ -1,10 +1,10 @@ -#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 { @@ -33,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