X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/adaaa68635b4c8a4d8c5284add40366ea3eefb07..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/txtstrm.h?ds=sidebyside diff --git a/interface/wx/txtstrm.h b/interface/wx/txtstrm.h index 46c364a4f2..2292373398 100644 --- a/interface/wx/txtstrm.h +++ b/interface/wx/txtstrm.h @@ -2,8 +2,7 @@ // Name: txtstrm.h // Purpose: interface of wxTextInputStream // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -65,8 +64,7 @@ public: In Unicode build only: The encoding converter used to convert the bytes in the underlying input stream to characters. */ - wxTextInputStream(wxInputStream& stream, - const wxString& sep = " \t", + wxTextInputStream(wxInputStream& stream, const wxString& sep = " \t", const wxMBConv& conv = wxConvAuto()); /** @@ -74,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. @@ -253,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. @@ -262,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,