Public Methods | |
basic_ofstream () | |
basic_ofstream (const char *__s, ios_base::openmode __mode=ios_base::out|ios_base::trunc) | |
Create an output stream. More... | |
__filebuf_type * | rdbuf () const |
Get a pointer to the file stream's buffer. More... | |
bool | is_open () |
Query to see if file stream is open. More... | |
void | open (const char *__s, ios_base::openmode __mode=ios_base::out|ios_base::trunc) |
Specify a file to open for output. More... | |
void | close () |
Definition at line 373 of file fstream.
|
Default constructor for output file_stream. |
|
Create an output stream.
Definition at line 406 of file fstream. References std::basic_ofstream< _CharT, _Traits >::open(). |
|
Close the file stream. |
|
Query to see if file stream is open.
|
|
Specify a file to open for output.
Definition at line 442 of file fstream. Referenced by std::basic_ofstream< _CharT, _Traits >::basic_ofstream(). |
|
Get a pointer to the file stream's buffer.
|