CoreComponents 3.0.0
A Modern C++ Toolkit
|
UTF-16 encoding data sink. More...
#include <cc/Utf16Sink>
Public Member Functions | |
Utf16Sink (const Stream &stream, ByteOrder endian=ByteOrder::BigEndian) | |
Create a new UTF-16 encoding data sink. | |
Utf16Sink (const Stream &stream, const Bytes &buffer, ByteOrder endian=ByteOrder::BigEndian) | |
Create a new UTF-16 encoding data sink. | |
Utf16Sink (const Bytes &buffer, ByteOrder endian=ByteOrder::BigEndian) | |
Create a new UTF-16 encoding data sink. | |
void | writeByteOrderMark () |
Write the optional Byte Order Mark (BOM). | |
void | write (char32_t ch) |
Write an Unicode character ch. | |
long long | currentOffset () const |
Get the total number of bytes written. | |
UTF-16 encoding data sink.
UnicodeError |
Utf16Sink | ( | const Stream & | stream, |
ByteOrder | endian = ByteOrder::BigEndian ) |
Create a new UTF-16 encoding data sink.
stream | Underlying data stream |
endian | Byte order of the 16-bit words transmitted |
Utf16Sink | ( | const Stream & | stream, |
const Bytes & | buffer, | ||
ByteOrder | endian = ByteOrder::BigEndian ) |
Create a new UTF-16 encoding data sink.
stream | Underlying data stream |
buffer | Output buffer |
endian | Byte order of the 16-bit words transmitted |
Utf16Sink | ( | const Bytes & | buffer, |
ByteOrder | endian = ByteOrder::BigEndian ) |
Create a new UTF-16 encoding data sink.
buffer | Output buffer |
endian | Byte order of the 16 bit words transmitted |
void writeByteOrderMark | ( | ) |
Write the optional Byte Order Mark (BOM).
The BOM is the first 16 bit word of the transmission. It signifies the byte order for the following words. (The value of the BOM is 0xFEFF).
void write | ( | char32_t | ch | ) |
Write an Unicode character ch.
long long currentOffset | ( | ) | const |
Get the total number of bytes written.