]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/mstream.cpp
Some minors changes, like adding empty lines at end of files, to be able to compile...
[wxWidgets.git] / src / common / mstream.cpp
index c9f23704668d4a52def03835fa52ec7abc53921a..6519a8bc3a995b81776ab1815554681296359686 100644 (file)
   #pragma hdrstop
 #endif
 
-#ifndef WX_PRECOMP
-  #include "wx/defs.h"
-#endif
-
 #if wxUSE_STREAMS
 
 #include <stdlib.h>
 wxMemoryInputStream::wxMemoryInputStream(const char *data, size_t len)
   : wxInputStream()
 {
+/*
   m_i_streambuf->SetBufferIO((char*) data, (char*) (data+len));
   m_i_streambuf->SetIntPosition(0); // seek to start pos
   m_i_streambuf->Fixed(TRUE);
+*/
   m_length = len;
 }
 
@@ -49,7 +47,10 @@ wxMemoryInputStream::~wxMemoryInputStream()
 
 char wxMemoryInputStream::Peek()
 {
+/*
   return m_i_streambuf->GetBufferStart()[m_i_streambuf->GetIntPosition()];
+*/
+  return 0;
 }
 
 // ----------------------------------------------------------------------------
@@ -59,9 +60,11 @@ char wxMemoryInputStream::Peek()
 wxMemoryOutputStream::wxMemoryOutputStream(char *data, size_t len)
   : wxOutputStream()
 {
+/*
   if (data)
     m_o_streambuf->SetBufferIO(data, data+len);
   m_o_streambuf->Fixed(TRUE);
+*/
 }
 
 wxMemoryOutputStream::~wxMemoryOutputStream()