CoreComponents 3.0.0
A Modern C++ Toolkit
|
UTF-16 decoding data source. More...
#include <cc/Utf16Source>
Public Member Functions | |
Utf16Source (const Stream &stream, ByteOrder endian=ByteOrder::BigEndian) | |
Create a new UTF-16 decoding data source. | |
Utf16Source (const Stream &stream, const Bytes &buffer, ByteOrder endian=ByteOrder::BigEndian) | |
Create a new UTF-16 decoding data source. | |
Utf16Source (const Bytes &buffer, ByteOrder endian=ByteOrder::BigEndian) | |
Create a new UTF-16 decoding data source. | |
bool | read (Out< char32_t > ch) |
Read the next Unicode character. | |
UTF-16 decoding data source.
A Byte Order Mark (BOM) at the start of the stream automatically sets endianess. The decoder is designed to be as strict as possible. It checks if the input streams delivers full 16-bit words and it requires a high surrogate to be followed by a low surrogate.
Utf16Source | ( | const Stream & | stream, |
ByteOrder | endian = ByteOrder::BigEndian ) |
Create a new UTF-16 decoding data source.
stream | Underlying data stream |
endian | Byte order of the 16-bit words transmitted |
Utf16Source | ( | const Stream & | stream, |
const Bytes & | buffer, | ||
ByteOrder | endian = ByteOrder::BigEndian ) |
Create a new UTF-16 decoding data source.
stream | Underlying data stream |
buffer | Input buffer |
endian | Byte order of the 16-bit words transmitted |
Utf16Source | ( | const Bytes & | buffer, |
ByteOrder | endian = ByteOrder::BigEndian ) |
Create a new UTF-16 decoding data source.
buffer | Input buffer |
endian | Byte order of the 16-bit words transmitted |
bool read | ( | Out< char32_t > | ch | ) |
Read the next Unicode character.
ch | Returns the Unicode character read if any |