fixed input stream
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2042 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -14,9 +14,13 @@
|
||||
#include <wx/stream.h>
|
||||
|
||||
class wxMemoryInputStream: public wxInputStream {
|
||||
private:
|
||||
size_t m_length;
|
||||
|
||||
public:
|
||||
wxMemoryInputStream(const char *data, size_t length);
|
||||
virtual ~wxMemoryInputStream();
|
||||
virtual size_t StreamSize() const { return m_length; }
|
||||
|
||||
char Peek();
|
||||
};
|
||||
|
Reference in New Issue
Block a user