|
FastLED 3.9.15
|
#include <fstream.h>
Collaboration diagram for fl::ofstream:Public Member Functions | |
| ofstream () FL_NOEXCEPT | |
| ofstream (const char *path, ios::openmode mode=ios::out) | |
| ofstream (const ofstream &) FL_NOEXCEPT=delete | |
| ofstream (filebuf_ptr handle) | |
| ofstream (ofstream &&other) FL_NOEXCEPT | |
| ~ofstream () FL_NOEXCEPT | |
| void | clear_error () |
| void | close () |
| bool | eof () const |
| int | error () const |
| const char * | error_message () const |
| bool | fail () const |
| bool | good () const |
| bool | is_open () const |
| void | open (const char *path, ios::openmode mode=ios::out) |
| ofstream & | operator= (const ofstream &)=delete |
| ofstream & | operator= (ofstream &&other) FL_NOEXCEPT |
| filebuf_ptr | rdbuf () const |
| ofstream & | write (const char *data, fl::size_t count) |
Private Member Functions | |
| void | updateState () |
Private Attributes | |
| bool | mEof |
| bool | mFail |
| bool | mGood |
| filebuf_ptr | mHandle |
| int | mLocalError |