std::basic_streambuf
From Cppreference
C++ Standard Library |
---|
Input/output library |
std::basic_streambuf |
Template:cpp/io/basic streambuf/sidebar content |
Defined in header <streambuf>
|
||
template<
class CharT, |
||
The class basic_streambuf abstracts the raw device used in input/output operations. This class is not meant to be copyable: one basic_streambuf object corresponds to one actual device.
Two specializations for common character types are also defined:
Defined in header
<streambuf> | |
Type | Definition |
streambuf | basic_streambuf<char> |
wstreambuf | basic_streambuf<wchar_t> |
This section is incomplete |
Contents |
[edit] Member types
Member type | Definition |
char_type | CharT |
traits_type | Traits |
int_type | Traits::int_type |
pos_type | Traits::pos_type |
off_type | Traits::off_type |