1 \section{\class{wxFileInputStream
}}\label{wxfileinputstream
}
3 This class represents data read in from a file. There are actually
4 two such groups of classes: this one is based on
\helpref{wxFile
}{wxfile
}
5 whereas
\helpref{wxFFileInputStream
}{wxffileinputstream
} is based in
6 the
\helpref{wxFFile
}{wxffile
} class.
8 Note that
\helpref{wxFile
}{wxfile
} and
\helpref{wxFFile
}{wxffile
} differ
9 in one aspect, namely when to
report that the end of the file has been
10 reached. This is documented in
\helpref{wxFile::Eof
}{wxfileeof
} and
11 \helpref{wxFFile::Eof
}{wxffileeof
} and the behaviour of the stream
12 classes reflects this difference, i.e. wxFileInputStream will
report
13 wxSTREAM
\_EOF after having read the last byte whereas wxFFileInputStream
14 will
report wxSTREAM
\_EOF after trying to read
{\it past
} the last byte.
16 \wxheading{Derived from
}
18 \helpref{wxInputStream
}{wxinputstream
}
20 \wxheading{Include files
}
26 \helpref{wxBufferedInputStream
}{wxbufferedinputstream
},
\helpref{wxFileOutputStream
}{wxfileoutputstream
},
\helpref{wxFFileOutputStream
}{wxffileoutputstream
}
31 \latexignore{\rtfignore{\wxheading{Members
}}}
33 \membersection{wxFileInputStream::wxFileInputStream
}
35 \func{}{wxFileInputStream
}{\param{const wxString\&
}{ ifileName
}}
37 Opens the specified file using its
{\it ifilename
} name in read-only mode.
39 \func{}{wxFileInputStream
}{\param{wxFile\&
}{ file
}}
41 Initializes a file stream in read-only mode using the file I/O object
{\it file
}.
43 \func{}{wxFileInputStream
}{\param{int
}{ fd
}}
45 Initializes a file stream in read-only mode using the specified file descriptor.
47 \membersection{wxFileInputStream::
\destruct{wxFileInputStream
}}
49 \func{}{\destruct{wxFileInputStream
}}{\void}
53 \membersection{wxFileInputStream::Ok
}
55 \constfunc{bool
}{Ok
}{\void}
57 Returns TRUE if the stream is initialized and ready.