X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3cacae09fad9fee2c9cb222455e0f9aa4fa11d37..752c7d6bbdf97037c9a2bf20625b47951b76aa4a:/include/wx/mstream.h?ds=sidebyside diff --git a/include/wx/mstream.h b/include/wx/mstream.h index 9cc7aab26a..1c3283e779 100644 --- a/include/wx/mstream.h +++ b/include/wx/mstream.h @@ -8,69 +8,33 @@ // Copyright: (c) Guilhem Lavaux // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __WXMMSTREAM_H__ -#define __WXMMSTREAM_H__ +#ifndef _WX_WXMMSTREAM_H__ +#define _WX_WXMMSTREAM_H__ #include -class wxMemoryStreamBase: public wxStream { - DECLARE_CLASS(wxMemoryStreamBase) - public: - wxMemoryStreamBase(char *data, size_t length, int iolimit); - virtual ~wxMemoryStreamBase(); - - // Input part - wxInputStream& Read(void *buffer, size_t size); - size_t SeekI(int pos, wxWhenceType whence = wxBeginPosition); - size_t TellI() const { return m_position_i; } - - bool Eof() const { return m_eof; } - size_t LastRead() const { return m_lastread; } - - // Output part - wxOutputStream& Write(const void *buffer, size_t size); - size_t SeekO(int pos, wxWhenceType whence = wxBeginPosition); - size_t TellO() const { return m_position_o; } +#if wxUSE_STREAMS - bool Bad() const { return m_bad; } - size_t LastWrite() const { return m_lastwrite; } - void Sync() {} - - protected: - bool ChangeBufferSize(size_t new_length); - - protected: - bool m_bad, m_eof, m_persistent; - size_t m_lastread, m_lastwrite; +class wxMemoryInputStream: public wxInputStream { + private: size_t m_length; - size_t m_position_i, m_position_o; - char *m_buffer; - int m_iolimit; -}; - - -class wxMemoryInputStream: public wxMemoryStreamBase { - DECLARE_CLASS(wxMemoryInputStream) + public: - wxMemoryInputStream(char *data, size_t length) - : wxMemoryStreamBase(data, length, 1) - {} -}; + wxMemoryInputStream(const char *data, size_t length); + virtual ~wxMemoryInputStream(); + virtual size_t StreamSize() const { return m_length; } -class wxMemoryOutputStream: public wxMemoryStreamBase { - DECLARE_DYNAMIC_CLASS(wxMemoryOutputStream) - public: - wxMemoryOutputStream(char *data = NULL, size_t length = 0) - : wxMemoryStreamBase(data, length, 2) - {} + char Peek(); }; -class wxMemoryStream: public wxMemoryStreamBase { - DECLARE_DYNAMIC_CLASS(wxMemoryStream) +class wxMemoryOutputStream: public wxOutputStream { public: - wxMemoryStream(char *data = NULL, size_t length = 0) - : wxMemoryStreamBase(data, length, 0) - {} + wxMemoryOutputStream(char *data = NULL, size_t length = 0); + virtual ~wxMemoryOutputStream(); }; #endif + // wxUSE_STREAMS + +#endif + // _WX_WXMMSTREAM_H__ \ No newline at end of file