X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..92c0fc34c104c8d7c12d6a3b78ea232690fc23f4:/interface/wx/wfstream.h diff --git a/interface/wx/wfstream.h b/interface/wx/wfstream.h index 2e3049b3eb..27c1a3f406 100644 --- a/interface/wx/wfstream.h +++ b/interface/wx/wfstream.h @@ -2,7 +2,6 @@ // Name: wfstream.h // Purpose: interface of wxTempFileOutputStream // Author: wxWidgets team -// RCS-ID: $Id$ // 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; };