|
typedef basic_filebuf< char_type, traits_type > | __filebuf_type |
|
typedef basic_ios< char_type, traits_type > | __ios_type |
|
typedef basic_iostream< char_type, traits_type > | __iostream_type |
|
typedef basic_istream< _CharT, _Traits > | __istream_type |
|
typedef basic_ostream< _CharT, _Traits > | __ostream_type |
|
typedef _CharT | char_type |
|
typedef traits_type::int_type | int_type |
|
typedef traits_type::off_type | off_type |
|
typedef traits_type::pos_type | pos_type |
|
typedef _Traits | traits_type |
|
template<typename _CharT, typename _Traits>
class std::basic_fstream< _CharT, _Traits >
Controlling input and output for files.
- Template Parameters
-
_CharT | Type of character stream. |
_Traits | Traits for character type, defaults to char_traits<_CharT>. |
This class supports reading from and writing to named files, using the inherited functions from std::basic_iostream. To control the associated sequence, an instance of std::basic_filebuf is used, which this page refers to as sb
.
Definition at line 1016 of file fstream.