X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3e97b55017ab8fee83025a7573deb3bb48577d87..27d79a5027bee4f46e57c813d072422065cb1592:/interface/wx/wfstream.h diff --git a/interface/wx/wfstream.h b/interface/wx/wfstream.h index 706d656311..67237247ec 100644 --- a/interface/wx/wfstream.h +++ b/interface/wx/wfstream.h @@ -3,7 +3,7 @@ // Purpose: interface of wxTempFileOutputStream // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -98,6 +98,12 @@ public: Returns @true if the stream is initialized and ready. */ bool IsOk() const; + + /** + Returns the underlying file object. + @since 2.9.5 + */ + wxFFile* GetFile() const; }; @@ -147,6 +153,12 @@ public: Returns @true if the stream is initialized and ready. */ bool IsOk() const; + + /** + Returns the underlying file object. + @since 2.9.5 + */ + wxFile* GetFile() const; }; @@ -196,6 +208,12 @@ public: Returns @true if the stream is initialized and ready. */ bool IsOk() const; + + /** + Returns the underlying file object. + @since 2.9.5 + */ + wxFile* GetFile() const; }; @@ -246,6 +264,12 @@ public: Returns @true if the stream is initialized and ready. */ bool IsOk() const; + + /** + Returns the underlying file object. + @since 2.9.5 + */ + wxFFile* GetFile() const; };