]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/datstrm.h
attempt to fix endian problems when doing cross-compiles for universal binaries from...
[wxWidgets.git] / include / wx / datstrm.h
index 18738669d8890455ac722575159194c535b08b3f..7551c3c24b9ddf9f638f5f51ba4a242490ca0abc 100644 (file)
@@ -6,16 +6,12 @@
 // Created:     28/06/1998
 // RCS-ID:      $Id$
 // Copyright:   (c) Guilhem Lavaux
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_DATSTREAM_H_
 #define _WX_DATSTREAM_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "datstrm.h"
-#endif
-
 #include "wx/stream.h"
 #include "wx/longlong.h"
 #include "wx/strconv.h"
@@ -30,8 +26,8 @@ public:
 #else
     wxDataInputStream(wxInputStream& s);
 #endif
-    ~wxDataInputStream();
-    
+    ~wxDataInputStream(){}
+
     bool IsOk() { return m_input->IsOk(); }
 
     wxUint64 Read64();
@@ -78,7 +74,7 @@ public:
 #else
     wxDataOutputStream(wxOutputStream& s);
 #endif
-    ~wxDataOutputStream();
+    ~wxDataOutputStream(){}
 
     bool IsOk() { return m_output->IsOk(); }