]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datstrm.h
Added wxExtDialog and sample.
[wxWidgets.git] / include / wx / datstrm.h
index b5bd8a166451ed5b58abcbf1344a0b9a113d11b7..40537e32912b014ef346f706bd912f0e4a53a042 100644 (file)
@@ -9,40 +9,43 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __DATSTREAMH__
-#define __DATSTREAMH__
+#ifndef _WX_DATSTREAM_H_
+#define _WX_DATSTREAM_H_
 
 #ifdef __GNUG__
 #pragma interface "datstrm.h"
 #endif
 
-#include "wx/wx.h"
+#include <wx/stream.h>
 
-class wxDataStream {
-public:
-  wxDataStream(iostream& s);
-  wxDataStream(istream& s);
-  wxDataStream(ostream& s);
+#if wxUSE_STREAMS
 
-  virtual ~wxDataStream();
+class WXDLLEXPORT wxDataInputStream: public wxFilterInputStream {
+public:
+  wxDataInputStream(wxInputStream& s);
+  virtual ~wxDataInputStream();
 
-  unsigned long Read32();
-  unsigned short Read16();
-  unsigned char Read8();
+  wxUint32 Read32();
+  wxUint16 Read16();
+  wxUint8 Read8();
   double ReadDouble();
-  wxString ReadLine();
   wxString ReadString();
+};
 
-  void Write32(unsigned long i);
-  void Write16(unsigned short i);
-  void Write8(unsigned char i);
+class WXDLLEXPORT wxDataOutputStream: public wxFilterOutputStream {
+ public:
+  wxDataOutputStream(wxOutputStream& s);
+  virtual ~wxDataOutputStream();
+
+  void Write32(wxUint32 i);
+  void Write16(wxUint16 i);
+  void Write8(wxUint8 i);
   void WriteDouble(double d);
-  void WriteLine(const wxString& line);
   void WriteString(const wxString& string);
-protected:
-  istream *m_istream;
-  ostream *m_ostream;
 };
 
 #endif
-    // __HELPBASEH__
+  // wxUSE_STREAMS
+
+#endif
+    // _WX_DATSTREAM_H_