STDIOStreamWrappingMode

STDIOStreamWrappingMode enum

Specifies the mode of I/O operations that wrappers will perform on std::iostreams-like streams.

enum class STDIOStreamWrappingMode

Values

NameValueDescription
Binary0A mode that allows input operations to decode stream data of char_type type into bytes, and encode bytes into char_type data for output operations.
Conversion1A mode that allows input operations to convert stream data from char_type type to uint8_t type and vice versa for output operations.

See Also