UtfString
|
#include <UtfStringConverter.h>
Static Public Member Functions | |
static void | Utf8ToUtf16String (const Utf8String &utf8String, Utf16String &utf16String) |
Converts a UTF-8 string to a UTF-16 string. More... | |
static void | Utf8ToUtf16String (const std::string &utf8String, Utf16String &utf16String) |
Converts a UTF-8 string to a UTF-16 string. More... | |
static void | Utf16ToUtf8String (const Utf16String &utf16String, Utf8String &utf8String) |
Converts a UTF-16 string to a UTF-8 string. More... | |
static void | Utf16ToUtf8String (const std::wstring &utf16String, Utf8String &utf8String) |
Converts a UTF-16 string to a UTF-8 string. More... | |
This class contains the functionality for converting strings to another encoding.
|
static |
Converts a UTF-16 string to a UTF-8 string.
This function assumes that utf16String is a valid UTF-16 string.
[in] | utf16String | The UTF-16 string to be converted |
[out] | utf8String | The string in which the converted UTF-8 string will be stored |
|
static |
Converts a UTF-16 string to a UTF-8 string.
This function assumes that utf16String is a valid UTF-16 string.
[in] | utf16String | The UTF-16 string to be converted |
[out] | utf8String | The string in which the converted UTF-8 string will be stored |
|
static |
Converts a UTF-8 string to a UTF-16 string.
This function assumes that utf8String is a valid UTF-8 string.
[in] | utf8String | The UTF-8 string to be converted |
[out] | utf16String | The string in which the converted UTF-16 stored will be stored |
|
static |
Converts a UTF-8 string to a UTF-16 string.
This function assumes that utf8String is a valid UTF-8 string.
[in] | utf8String | The UTF-8 string to be converted |
[out] | utf16String | The string in which the converted UTF-16 string will be stored |