]>
git.saurik.com Git - wxWidgets.git/blob - src/common/mstream.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: "Memory stream" classes
4 // Author: Guilhem Lavaux
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "mstream.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
19 #include <wx/stream.h>
20 #include <wx/mstream.h>
26 // ----------------------------------------------------------------------------
27 // wxMemoryInputStream
28 // ----------------------------------------------------------------------------
30 wxMemoryInputStream::wxMemoryInputStream(const char *data
, size_t len
)
33 m_i_streambuf
->SetBufferIO((char*) data
, (char*) (data
+len
));
34 m_i_streambuf
->Fixed(TRUE
);
37 wxMemoryInputStream::~wxMemoryInputStream()
41 char wxMemoryInputStream::Peek()
43 return m_i_streambuf
->GetBufferStart()[m_i_streambuf
->GetIntPosition()];
46 // ----------------------------------------------------------------------------
47 // wxMemoryOutputStream
48 // ----------------------------------------------------------------------------
50 wxMemoryOutputStream::wxMemoryOutputStream(char *data
, size_t len
)
54 m_o_streambuf
->SetBufferIO(data
, data
+len
);
55 m_o_streambuf
->Fixed(TRUE
);
58 wxMemoryOutputStream::~wxMemoryOutputStream()