added mode parameter to wxFFileStream ctors taking wxFFile

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-01-15 23:06:09 +00:00
parent c67b4daf47
commit 5fec5bb620
3 changed files with 91 additions and 105 deletions

View File

@@ -38,9 +38,9 @@ can seek beyond the end of the stream (file) and will thus not return
\membersection{wxFFileInputStream::wxFFileInputStream}\label{wxffileinputstreamctor}
\func{}{wxFFileInputStream}{\param{const wxString\&}{ ifileName}}
\func{}{wxFFileInputStream}{\param{const wxString\&}{ filename}, \param{const wxChar *}{ mode = "rb"}}
Opens the specified file using its {\it ifilename} name in read-only mode.
Opens the specified file using its {\it filename} name using the specified mode.
\func{}{wxFFileInputStream}{\param{wxFFile\&}{ file}}
@@ -102,10 +102,9 @@ can seek beyond the end of the stream (file) and will thus not return
\membersection{wxFFileOutputStream::wxFFileOutputStream}\label{wxffileoutputstreamctor}
\func{}{wxFFileOutputStream}{\param{const wxString\&}{ ofileName}}
\func{}{wxFFileOutputStream}{\param{const wxString\&}{ filename}, \param{const wxChar *}{ mode="w+b"}}
Creates a new file with {\it ofilename} name and initializes the stream in
write-only mode.
Opens the file with the given {\it filename} name in the specified mode.
\func{}{wxFFileOutputStream}{\param{wxFFile\&}{ file}}