Public Methods | |
basic_fstream () | |
basic_fstream (const char *__s, ios_base::openmode __mode=ios_base::in|ios_base::out) | |
Create an input/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::in|ios_base::out) |
Specify a file to open for input and/or output. More... | |
void | close () |
Definition at line 464 of file fstream.
|
Default constructor. Create a file stream. |
|
Create an input/output stream.
Definition at line 498 of file fstream. References std::basic_fstream< _CharT, _Traits >::open(). |
|
Close the file stream. |
|
Query to see if file stream is open.
|
|
Specify a file to open for input and/or output.
Definition at line 534 of file fstream. Referenced by std::basic_fstream< _CharT, _Traits >::basic_fstream(). |
|
Get a pointer to the file stream's buffer.
|