#if wxUSE_STREAMS
#include "wx/datstrm.h"
-#include "wx/math.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/math.h"
+#endif //WX_PRECOMP
// ---------------------------------------------------------------------------
// wxDataInputStream
}
}
-wxDataOutputStream& wxDataOutputStream::operator<<(const wxChar *string)
-{
- Write32(wxStrlen(string));
- m_output->Write((const char *)string, wxStrlen(string)*sizeof(wxChar));
- return *this;
-}
-
wxDataOutputStream& wxDataOutputStream::operator<<(const wxString& string)
{
WriteString(string);