std::basic_iostream
std::basic_iostream
Defined in header <istream> | ||
---|---|---|
template< class CharT, class Traits = std::char_traits<CharT> > class basic_iostream; |
The class template basic_iostream
provides support for high level input/output operations on streams. The supported operations include sequential reading or writing and formatting. This functionality is implemented over the interface, provided by the basic_streambuf
class. It is accessed through basic_ios
class.