X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3e97b55017ab8fee83025a7573deb3bb48577d87..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/wfstream.h?ds=inline diff --git a/interface/wx/wfstream.h b/interface/wx/wfstream.h index 706d656311..27c1a3f406 100644 --- a/interface/wx/wfstream.h +++ b/interface/wx/wfstream.h @@ -2,8 +2,7 @@ // Name: wfstream.h // Purpose: interface of wxTempFileOutputStream // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -98,6 +97,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 +152,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 +207,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 +263,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; };