]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/txtstrm.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / txtstrm.h
index 1592d75f272a9dd7bb818b94363ed8e538e98712..2292373398e0225282103ce692011be1cb65d7de 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        txtstrm.h
 // Purpose:     interface of wxTextInputStream
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
@@ -73,6 +72,13 @@ public:
     */
     ~wxTextInputStream();
 
+    /**
+        Returns a pointer to the underlying input stream object.
+
+        @since 2.9.2
+    */
+    const wxInputStream& GetInputStream() const;
+
     /**
         Reads a character, returns 0 if there are no more characters in the
         stream.
@@ -252,6 +258,13 @@ public:
      */
     void Flush();
 
+    /**
+        Returns a pointer to the underlying output stream object.
+
+        @since 2.9.2
+    */
+    const wxOutputStream& GetOutputStream() const;
+
     /**
         Returns the end-of-line mode. One of ::wxEOL_DOS, ::wxEOL_MAC and
         ::wxEOL_UNIX.
@@ -261,7 +274,7 @@ public:
     /**
         Writes a character to the stream.
     */
-    void PutChar(wxChar c);
+    wxTextOutputStream& PutChar(wxChar c);
 
     /**
         Set the end-of-line mode. One of ::wxEOL_NATIVE, ::wxEOL_DOS,