Fixed that stupid stream problem.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
db138a4c2a
commit
f0b078077d
@ -13,7 +13,7 @@
|
||||
#define __WXSTREAM_H__
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface
|
||||
#pragma interface "stream.h"
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -134,6 +134,10 @@ wxDataOutputStream::wxDataOutputStream(wxOutputStream& s)
|
||||
{
|
||||
}
|
||||
|
||||
wxDataOutputStream::~wxDataOutputStream()
|
||||
{
|
||||
}
|
||||
|
||||
void wxDataOutputStream::Write32(unsigned long i)
|
||||
{
|
||||
char buf[4];
|
||||
|
@ -32,6 +32,7 @@ IMPLEMENT_ABSTRACT_CLASS(wxInputStream, wxObject)
|
||||
IMPLEMENT_ABSTRACT_CLASS(wxOutputStream, wxObject)
|
||||
IMPLEMENT_ABSTRACT_CLASS2(wxStream, wxInputStream, wxOutputStream)
|
||||
IMPLEMENT_CLASS(wxFilterInputStream, wxInputStream)
|
||||
IMPLEMENT_CLASS(wxFilterOutputStream, wxOutputStream)
|
||||
#endif
|
||||
|
||||
wxInputStream::wxInputStream()
|
||||
|
Loading…
Reference in New Issue
Block a user