class axl::enc::Utf32_be

#include <axl_enc_Utf.h>

class Utf32_be: public axl::enc::Utf32
{
public:
    // methods

    static
    UtfKind
    getUtfKind();

    static
    const uint8_t*
    getBom();

    static
    utf32_t
    decodeCodePoint(const utf32_t* p);

    static
    void
    encodeCodePoint(
        utf32_t* p,
        utf32_t x
        );
};

Inherited Members

public:
    // typedefs

    typedef utf32_t C;

    // methods

    static
    UtfKind
    getUtfKind();

    static
    const uint8_t*
    getBom();

    static
    size_t
    getBomLength();

    static
    size_t
    getDecodeCodePointLength(utf32_t c);

    static
    size_t
    getEncodeCodePointLength(utf32_t x);

    static
    utf32_t
    decodeCodePoint(const utf32_t* p);

    static
    void
    encodeCodePoint(
        utf32_t* p,
        utf32_t x
        );

    static
    size_t
    calcCodePointCount(
        const C* p,
        size_t length
        );