Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The <istream>
header provides the following typedefs:
iostream
A type basic_iostream
specialized on char
.
typedef basic_iostream<char, char_traits<char>> iostream;
Remarks
The type is a synonym for class template basic_iostream, specialized for elements of type char
with default character traits.
istream
A type basic_istream
specialized on char
.
typedef basic_istream<char, char_traits<char>> istream;
Remarks
The type is a synonym for class template basic_istream, specialized for elements of type char
with default character traits.
wiostream
A type basic_iostream
specialized on wchar_t
.
typedef basic_iostream<wchar_t, char_traits<wchar_t>> wiostream;
Remarks
The type is a synonym for class template basic_iostream, specialized for elements of type wchar_t
with default character traits.
wistream
A type basic_istream
specialized on wchar_t
.
typedef basic_istream<wchar_t, char_traits<wchar_t>> wistream;
Remarks
The type is a synonym for class template basic_istream, specialized for elements of type wchar_t
with default character traits.