X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/940ddb190cb3f67f3b1eb85c29133e829c3ab762..f8c4475a3e579655f6a962822824596a7a9cfb66:/include/wx/txtstrm.h?ds=sidebyside diff --git a/include/wx/txtstrm.h b/include/wx/txtstrm.h index 2fc0ac7aa7..5586707252 100644 --- a/include/wx/txtstrm.h +++ b/include/wx/txtstrm.h @@ -43,6 +43,9 @@ public: protected: wxInputStream *m_input; + + wxChar NextNonWhiteSpace(); + void SkipIfEndOfLine( wxChar c ); }; class WXDLLEXPORT wxTextOutputStream { @@ -55,7 +58,7 @@ class WXDLLEXPORT wxTextOutputStream { void Write8(wxUint8 i); void WriteDouble(double d); void WriteString(const wxString& string); - + wxTextOutputStream& operator<<(const wxChar *string); wxTextOutputStream& operator<<(const wxString& string); wxTextOutputStream& operator<<(wxChar c);