X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4cc4bfafe5a31cb96f35b3ec9b19fa2b0b3a4eef..7c0d297a1f761de31d3a4ac924fa2080b5bbaf41:/interface/wfstream.h diff --git a/interface/wfstream.h b/interface/wfstream.h index b9bc3e7e6a..62c1399238 100644 --- a/interface/wfstream.h +++ b/interface/wfstream.h @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // Name: wfstream.h -// Purpose: documentation for wxTempFileOutputStream class +// Purpose: interface of wxTempFileOutputStream // Author: wxWidgets team // RCS-ID: $Id$ // Licence: wxWindows license @@ -17,8 +17,7 @@ @library{wxbase} @category{streams} - @seealso - wxTempFile + @see wxTempFile */ class wxTempFileOutputStream : public wxOutputStream { @@ -50,6 +49,7 @@ public: }; + /** @class wxFFileOutputStream @wxheader{wfstream.h} @@ -66,8 +66,7 @@ public: @library{wxbase} @category{streams} - @seealso - wxBufferedOutputStream, wxFFileInputStream, wxFileInputStream + @see wxBufferedOutputStream, wxFFileInputStream, wxFileInputStream */ class wxFFileOutputStream : public wxOutputStream { @@ -90,10 +89,11 @@ public: /** Returns @true if the stream is initialized and ready. */ - bool IsOk(); + bool IsOk() const; }; + /** @class wxFileOutputStream @wxheader{wfstream.h} @@ -110,8 +110,7 @@ public: @library{wxbase} @category{streams} - @seealso - wxBufferedOutputStream, wxFileInputStream, wxFFileInputStream + @see wxBufferedOutputStream, wxFileInputStream, wxFFileInputStream */ class wxFileOutputStream : public wxOutputStream { @@ -133,10 +132,11 @@ public: /** Returns @true if the stream is initialized and ready. */ - bool IsOk(); + bool IsOk() const; }; + /** @class wxFileInputStream @wxheader{wfstream.h} @@ -153,8 +153,7 @@ public: @library{wxbase} @category{streams} - @seealso - wxBufferedInputStream, wxFileOutputStream, wxFFileOutputStream + @see wxBufferedInputStream, wxFileOutputStream, wxFFileOutputStream */ class wxFileInputStream : public wxInputStream { @@ -176,10 +175,11 @@ public: /** Returns @true if the stream is initialized and ready. */ - bool IsOk(); + bool IsOk() const; }; + /** @class wxFFileInputStream @wxheader{wfstream.h} @@ -196,8 +196,7 @@ public: @library{wxbase} @category{streams} - @seealso - wxBufferedInputStream, wxFFileOutputStream, wxFileOutputStream + @see wxBufferedInputStream, wxFFileOutputStream, wxFileOutputStream */ class wxFFileInputStream : public wxInputStream { @@ -221,10 +220,11 @@ public: /** Returns @true if the stream is initialized and ready. */ - bool IsOk(); + bool IsOk() const; }; + /** @class wxFFileStream @wxheader{wfstream.h} @@ -233,8 +233,7 @@ public: @library{wxbase} @category{FIXME} - @seealso - wxStreamBuffer + @see wxStreamBuffer */ class wxFFileStream : public wxFFileOutputStream { @@ -247,6 +246,7 @@ public: }; + /** @class wxFileStream @wxheader{wfstream.h} @@ -255,8 +255,7 @@ public: @library{wxbase} @category{FIXME} - @seealso - wxStreamBuffer + @see wxStreamBuffer */ class wxFileStream : public wxFileOutputStream { @@ -267,3 +266,4 @@ public: */ wxFileStream(const wxString& iofileName); }; +