]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datstrm.h
Work on streams of all sorts. More to come.
[wxWidgets.git] / include / wx / datstrm.h
index b5bd8a166451ed5b58abcbf1344a0b9a113d11b7..e3bb7eeb800cd0f181c3b42f5ce6fd6ab8d362c1 100644 (file)
@@ -9,22 +9,21 @@
 // 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();
@@ -32,6 +31,12 @@ public:
   double ReadDouble();
   wxString ReadLine();
   wxString ReadString();
+};
+
+class WXDLLEXPORT wxDataOutputStream: public wxFilterOutputStream {
+ public:
+  wxDataOutputStream(wxOutputStream& s);
+  virtual ~wxDataOutputStream();
 
   void Write32(unsigned long i);
   void Write16(unsigned short i);
@@ -39,10 +44,10 @@ public:
   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_