X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c4e7c2aa5822f9a6e97d8d7848b95ea2eadcd98b..5d1902d6d6efc842c8f488520d3cca40f1ae99f8:/src/common/datstrm.cpp diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index fa1eaa7d89..d455a6dc4e 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -26,12 +26,9 @@ #include "wx/datstrm.h" -/* -#if !USE_SHARED_LIBRARY -IMPLEMENT_CLASS(wxDataInputStream, wxFilterInputStream) -IMPLEMENT_CLASS(wxDataOutputStream, wxFilterOutputStream) -#endif -*/ +// --------------------------------------------------------------------------- +// wxDataInputStream +// --------------------------------------------------------------------------- wxDataInputStream::wxDataInputStream(wxInputStream& s) : wxFilterInputStream(s) @@ -77,7 +74,7 @@ extern "C" double ConvertFromIeeeExtended(const unsigned char *bytes); double wxDataInputStream::ReadDouble() { -#if USE_APPLE_IEEE +#if wxUSE_APPLE_IEEE char buf[10]; Read(buf, 10); @@ -89,10 +86,30 @@ double wxDataInputStream::ReadDouble() wxString wxDataInputStream::ReadLine() { - char i_strg[255]; - - // TODO: Implement ReadLine - return i_strg; + char c, last_endl = 0; + bool end_line = FALSE; + wxString line; + + while (!end_line) { + c = GetC(); + switch (c) { + case '\n': + end_line = TRUE; + break; + case '\r': + last_endl = '\r'; + break; + default: + if (last_endl == '\r') { + end_line = TRUE; + InputStreamBuffer()->WriteBack(c); + break; + } + line += c; + break; + } + } + return line; } wxString wxDataInputStream::ReadString() @@ -110,9 +127,13 @@ wxString wxDataInputStream::ReadString() wx_string = string; delete string; - return wx_string; + return wx_string; } +// --------------------------------------------------------------------------- +// wxDataOutputStream +// --------------------------------------------------------------------------- + wxDataOutputStream::wxDataOutputStream(wxOutputStream& s) : wxFilterOutputStream(s) { @@ -171,10 +192,10 @@ void wxDataOutputStream::WriteDouble(double d) { char buf[10]; -#if USE_APPLE_IEEE +#if wxUSE_APPLE_IEEE ConvertToIeeeExtended(d, (unsigned char *)buf); #else -# pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!" +# pragma warning "wxDataStream::WriteDouble() not using IeeeExtended - will not work!" buf[0] = '\0'; #endif Write(buf, 10);