-class wxMemoryStream: public wxMemoryInputStream, public wxMemoryOutputStream {
- DECLARE_CLASS(wxMemoryStream)
- public:
- wxMemoryStream(char *data = NULL, size_t length = 0);
- virtual ~wxMemoryStream();
+class WXDLLEXPORT wxMemoryOutputStream : public wxOutputStream
+{
+public:
+ // if data is !NULL it must be allocated with malloc()
+ wxMemoryOutputStream(void *data = NULL, size_t length = 0);
+ virtual ~wxMemoryOutputStream();
+ virtual size_t GetSize() const { return m_o_streambuf->GetLastAccess(); }
+
+ size_t CopyTo(void *buffer, size_t len) const;
+
+ wxStreamBuffer *GetOutputStreamBuffer() const { return m_o_streambuf; }
+
+ // deprecated, compatibility only
+ wxStreamBuffer *OutputStreamBuffer() const { return m_o_streambuf; }
+
+protected:
+ wxStreamBuffer *m_o_streambuf;
+
+protected:
+ size_t OnSysWrite(const void *buffer, size_t nbytes);
+ off_t OnSysSeek(off_t pos, wxSeekMode mode);
+ off_t OnSysTell() const;