wxStream: wxInputStream and wxOutputStream don't inherit from wxObject anymore.
Removed DECLARE* and IMPLEMENT* filefn.h: added #include "wx/list.h" to define wxStringList git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@277 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -28,7 +28,6 @@ class wxMemoryStreamBase {
|
||||
};
|
||||
|
||||
class wxMemoryInputStream: virtual public wxMemoryStreamBase, public wxInputStream {
|
||||
DECLARE_CLASS(wxMemoryInputStream)
|
||||
public:
|
||||
wxMemoryInputStream(const char *data, size_t length);
|
||||
virtual ~wxMemoryInputStream();
|
||||
@@ -47,7 +46,6 @@ class wxMemoryInputStream: virtual public wxMemoryStreamBase, public wxInputStre
|
||||
};
|
||||
|
||||
class wxMemoryOutputStream: virtual public wxMemoryStreamBase, public wxOutputStream {
|
||||
DECLARE_CLASS(wxMemoryOutputStream)
|
||||
public:
|
||||
wxMemoryOutputStream(char *data = NULL, size_t length = 0);
|
||||
virtual ~wxMemoryOutputStream();
|
||||
@@ -69,7 +67,6 @@ class wxMemoryOutputStream: virtual public wxMemoryStreamBase, public wxOutputSt
|
||||
};
|
||||
|
||||
class wxMemoryStream: public wxMemoryInputStream, public wxMemoryOutputStream {
|
||||
DECLARE_CLASS(wxMemoryStream)
|
||||
public:
|
||||
wxMemoryStream(char *data = NULL, size_t length = 0);
|
||||
virtual ~wxMemoryStream();
|
||||
|
Reference in New Issue
Block a user