]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/datstrm.h
Removed wxPG_EX_LEGACY_VALIDATORS
[wxWidgets.git] / interface / wx / datstrm.h
index 3a0629dba905b8e2eb5ab6628c3826a447538aec..32c83fc8647d0a586b132b75b43c7137a384dda3 100644 (file)
@@ -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,
@@ -35,7 +34,8 @@ public:
         @param stream
             The output stream.
     */
-    wxDataOutputStream(wxOutputStream& stream);
+    wxDataOutputStream(wxOutputStream& s,
+                       const wxMBConv& conv = wxConvAuto(wxFONTENCODING_DEFAULT));
     /**
         Constructs a datastream object from an output stream. Only write
         methods will be available. This constructor is only available in
@@ -135,7 +135,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,
@@ -180,7 +179,8 @@ public:
         @param stream
             The input stream.
     */
-    wxDataInputStream(wxInputStream& stream);
+    wxDataInputStream(wxInputStream& s,
+                      const wxMBConv& conv = wxConvAuto(wxFONTENCODING_DEFAULT));
     /**
         Constructs a datastream object from an input stream. Only read methods
         will be available. This constructor is only available in Unicode builds