-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; }