From: Robert Roebling Date: Sat, 17 Nov 2001 13:23:10 +0000 (+0000) Subject: Added ::IsOk() to wxDataStream for error checking in X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7eb0e0375fcb0f8d7aab10ef14efe4fca19f681e?ds=inline Added ::IsOk() to wxDataStream for error checking in stream classes used by wxDataStream. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12459 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index 74e5375e31..f1043cb33d 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -25,6 +25,8 @@ class WXDLLEXPORT wxDataInputStream public: wxDataInputStream(wxInputStream& s); ~wxDataInputStream(); + + bool IsOk() { return m_input->IsOk(); } wxUint32 Read32(); wxUint16 Read16(); @@ -55,6 +57,8 @@ public: wxDataOutputStream(wxOutputStream& s); ~wxDataOutputStream(); + bool IsOk() { return m_output->IsOk(); } + void Write32(wxUint32 i); void Write16(wxUint16 i); void Write8(wxUint8 i);