#include </home/zeitlin/src/wx/github/interface/wx/wfstream.h>
このクラスはファイルへのデータ書き込みを表しています。
There are actually two such groups of classes: this one is based on wxFFile whereas wxFileOutputStream is based in the wxFile class.
Note that wxOutputStream::SeekO() can seek beyond the end of the stream (file) and will thus not return wxInvalidOffset for that.
Public Member Functions | |
wxFFileOutputStream (const wxString &filename, const wxString &mode="wb") | |
Open the given file filename with mode mode. | |
wxFFileOutputStream (wxFFile &file) | |
Initializes a file stream in write-only mode using the file I/O object file. | |
wxFFileOutputStream (FILE *fp) | |
Initializes a file stream in write-only mode using the file descriptor fp. | |
virtual | ~wxFFileOutputStream () |
Destructor. | |
bool | IsOk () const |
Returns true if the stream is initialized and ready. |
wxFFileOutputStream::wxFFileOutputStream | ( | const wxString & | filename, |
const wxString & | mode = "wb" |
||
) |
Open the given file filename with mode mode.
wxFFileOutputStream::wxFFileOutputStream | ( | wxFFile & | file | ) |
Initializes a file stream in write-only mode using the file I/O object file.
wxFFileOutputStream::wxFFileOutputStream | ( | FILE * | fp | ) |
Initializes a file stream in write-only mode using the file descriptor fp.
virtual wxFFileOutputStream::~wxFFileOutputStream | ( | ) | [virtual] |
Destructor.
bool wxFFileOutputStream::IsOk | ( | ) | const [virtual] |
Returns true if the stream is initialized and ready.
Reimplemented from wxStreamBase.
Reimplemented in wxFFileStream.