A class implementing an output stream interface, with destination specified by file descriptor.
More...
|
| ofdstream (int fd, int fallback_fd=FAIL_FD) |
| A constructor of the output file descriptor stream with specified prefered and fallback file descriptors. More...
|
|
| ~ofdstream () override |
| A desctructor of the output file descriptor. More...
|
|
bool | is_redirected () const |
| Getter of the redirected flag informing whether prefered or fallback file descriptor is used. More...
|
|
| ostream (std::basic_streambuf< char > *sb) |
|
virtual | ~ostream () noexcept |
|
ostream & | put (char ch) |
|
ostream & | write (const char *s, std::streamsize count) |
|
std::streampos | tellp () |
|
ostream & | seekp (std::streampos pos) |
|
ostream & | seekp (std::streamoff off, std::ios_base::seekdir dir) |
|
ostream & | flush () |
|
std::streambuf * | rdbuf () const |
|
std::streambuf * | rdbuf (std::streambuf *buf) |
|
void | setstate (std::ios_base::iostate state) |
|
void | clear (std::ios_base::iostate state=std::ios_base::goodbit) |
|
A class implementing an output stream interface, with destination specified by file descriptor.