]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/wfstream.h
Make storing non-trivial data in wxThreadSpecificInfo possible.
[wxWidgets.git] / interface / wx / wfstream.h
index 2e3049b3ebd9be299d9587fcf1ddd0c7d20c6f3c..27c1a3f40648d21a9b1208da8927ce99ab195e50 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        wfstream.h
 // Purpose:     interface of wxTempFileOutputStream
 // Author:      wxWidgets team
 // Name:        wfstream.h
 // Purpose:     interface of wxTempFileOutputStream
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -98,6 +97,12 @@ public:
         Returns @true if the stream is initialized and ready.
     */
     bool IsOk() const;
         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 @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 @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 @true if the stream is initialized and ready.
     */
     bool IsOk() const;
+
+    /**
+        Returns the underlying file object.
+        @since 2.9.5
+    */
+    wxFFile* GetFile() const;
 };
 
 
 };