]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stream.h
[start of] a wxUniversal implementation of wxToolBar
[wxWidgets.git] / include / wx / stream.h
index 00bf592d09905892557b282a10d9c9e694212c7e..d035bde1cfbbffd1ec560d3e97aa272423ce22df 100644 (file)
@@ -122,9 +122,6 @@ public:
 
     // Operators
     wxInputStream& operator>>(wxOutputStream& out) { return Read(out); }
-#if wxUSE_SERIAL
-    wxInputStream& operator>>(wxObject *& obj);
-#endif
     wxInputStream& operator>>( __wxInputManip func) { return func(*this); }
 
 protected:
@@ -161,9 +158,6 @@ public:
     virtual void Sync();
 
     wxOutputStream& operator<<(wxInputStream& out) { return Write(out); }
-#if wxUSE_SERIAL
-    wxOutputStream& operator<<(wxObject& obj);
-#endif
     wxOutputStream& operator<<( __wxOutputManip func) { return func(*this); }
 
 protected: