#include </home/zeitlin/src/wx/github/interface/wx/wfstream.h>
Inheritance diagram for wxFileOutputStream:このクラスはファイルへのデータ書き込みを表しています。
There are actually two such groups of classes: this one is based on wxFile whereas wxFFileOutputStream is based in the wxFFile 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 | |
| wxFileOutputStream (const wxString &ofileName) | |
| Creates a new file with ofileName name and initializes the stream in write-only mode. | |
| wxFileOutputStream (wxFile &file) | |
| Initializes a file stream in write-only mode using the file I/O object file. | |
| wxFileOutputStream (int fd) | |
| Initializes a file stream in write-only mode using the file descriptor fd. | |
| virtual | ~wxFileOutputStream () |
| Destructor. | |
| bool | IsOk () const |
| Returns true if the stream is initialized and ready. | |
| wxFileOutputStream::wxFileOutputStream | ( | const wxString & | ofileName | ) |
Creates a new file with ofileName name and initializes the stream in write-only mode.
| wxFileOutputStream::wxFileOutputStream | ( | wxFile & | file | ) |
Initializes a file stream in write-only mode using the file I/O object file.
| wxFileOutputStream::wxFileOutputStream | ( | int | fd | ) |
Initializes a file stream in write-only mode using the file descriptor fd.
| virtual wxFileOutputStream::~wxFileOutputStream | ( | ) | [virtual] |
Destructor.
| bool wxFileOutputStream::IsOk | ( | ) | const [virtual] |
Returns true if the stream is initialized and ready.
Reimplemented from wxStreamBase.
Reimplemented in wxFileStream.