X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..a70ab3b804b6c363f8bcbed0b4fce94b7fb03612:/interface/wx/datstrm.h diff --git a/interface/wx/datstrm.h b/interface/wx/datstrm.h index 3a0629dba9..8ff65a4495 100644 --- a/interface/wx/datstrm.h +++ b/interface/wx/datstrm.h @@ -8,7 +8,6 @@ /** @class wxDataOutputStream - @wxheader{datstrm.h} This class provides functions that write binary data types in a portable way. Data can be written in either big-endian or little-endian format, @@ -29,17 +28,10 @@ class wxDataOutputStream { public: /** - Constructs a datastream object from an output stream. Only write - methods will be available. + Constructs a datastream object from an output stream. + Only write methods will be available. - @param stream - The output stream. - */ - wxDataOutputStream(wxOutputStream& stream); - /** - Constructs a datastream object from an output stream. Only write - methods will be available. This constructor is only available in - Unicode builds of wxWidgets. + Note that the @a conv parameter is only available in Unicode builds of wxWidgets. @param stream The output stream. @@ -135,7 +127,6 @@ public: /** @class wxDataInputStream - @wxheader{datstrm.h} This class provides functions that read binary data types in a portable way. Data can be read in either big-endian or little-endian format, @@ -174,17 +165,10 @@ class wxDataInputStream { public: /** - Constructs a datastream object from an input stream. Only read methods - will be available. + Constructs a datastream object from an input stream. + Only read methods will be available. - @param stream - The input stream. - */ - wxDataInputStream(wxInputStream& stream); - /** - Constructs a datastream object from an input stream. Only read methods - will be available. This constructor is only available in Unicode builds - of wxWidgets. + Note that the @a conv parameter is only available in Unicode builds of wxWidgets. @param stream The input stream.