Beautified header.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9168 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2001-01-25 18:27:44 +00:00
parent 0f442030c4
commit 4c075b7090

View File

@@ -20,7 +20,8 @@
#if wxUSE_STREAMS
class WXDLLEXPORT wxDataInputStream {
class WXDLLEXPORT wxDataInputStream
{
public:
wxDataInputStream(wxInputStream& s);
~wxDataInputStream();
@@ -42,13 +43,15 @@ public:
wxDataInputStream& operator>>(float& f);
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
protected:
protected:
wxInputStream *m_input;
bool m_be_order;
};
class WXDLLEXPORT wxDataOutputStream {
public:
class WXDLLEXPORT wxDataOutputStream
{
public:
wxDataOutputStream(wxOutputStream& s);
~wxDataOutputStream();
@@ -70,7 +73,8 @@ class WXDLLEXPORT wxDataOutputStream {
wxDataOutputStream& operator<<(float f);
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
protected:
protected:
wxOutputStream *m_output;
bool m_be_order;
};