#include </home/zeitlin/src/wx/github/interface/wx/wfstream.h>
Inheritance diagram for wxFileInputStream:このクラスはファイルからのデータ読み込みを表しています。
There are actually two such groups of classes: this one is based on wxFile whereas wxFFileInputStream is based in the wxFFile class.
Note that wxInputStream::SeekI() can seek beyond the end of the stream (file) and will thus not return wxInvalidOffset for that.
Public Member Functions | |
| wxFileInputStream (const wxString &ifileName) | |
| Opens the specified file using its ifileName name in read-only mode. | |
| wxFileInputStream (wxFile &file) | |
| Initializes a file stream in read-only mode using the file I/O object file. | |
| wxFileInputStream (int fd) | |
| Initializes a file stream in read-only mode using the specified file descriptor. | |
| virtual | ~wxFileInputStream () |
| Destructor. | |
| bool | IsOk () const |
| Returns true if the stream is initialized and ready. | |
| wxFileInputStream::wxFileInputStream | ( | const wxString & | ifileName | ) |
Opens the specified file using its ifileName name in read-only mode.
| wxFileInputStream::wxFileInputStream | ( | wxFile & | file | ) |
Initializes a file stream in read-only mode using the file I/O object file.
| wxFileInputStream::wxFileInputStream | ( | int | fd | ) |
Initializes a file stream in read-only mode using the specified file descriptor.
| virtual wxFileInputStream::~wxFileInputStream | ( | ) | [virtual] |
Destructor.
| bool wxFileInputStream::IsOk | ( | ) | const [virtual] |
Returns true if the stream is initialized and ready.
Reimplemented from wxStreamBase.
Reimplemented in wxFileStream.