Beautified header.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9168 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -20,7 +20,8 @@
|
|||||||
|
|
||||||
#if wxUSE_STREAMS
|
#if wxUSE_STREAMS
|
||||||
|
|
||||||
class WXDLLEXPORT wxDataInputStream {
|
class WXDLLEXPORT wxDataInputStream
|
||||||
|
{
|
||||||
public:
|
public:
|
||||||
wxDataInputStream(wxInputStream& s);
|
wxDataInputStream(wxInputStream& s);
|
||||||
~wxDataInputStream();
|
~wxDataInputStream();
|
||||||
@@ -42,13 +43,15 @@ public:
|
|||||||
wxDataInputStream& operator>>(float& f);
|
wxDataInputStream& operator>>(float& f);
|
||||||
|
|
||||||
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
||||||
protected:
|
|
||||||
|
protected:
|
||||||
wxInputStream *m_input;
|
wxInputStream *m_input;
|
||||||
bool m_be_order;
|
bool m_be_order;
|
||||||
};
|
};
|
||||||
|
|
||||||
class WXDLLEXPORT wxDataOutputStream {
|
class WXDLLEXPORT wxDataOutputStream
|
||||||
public:
|
{
|
||||||
|
public:
|
||||||
wxDataOutputStream(wxOutputStream& s);
|
wxDataOutputStream(wxOutputStream& s);
|
||||||
~wxDataOutputStream();
|
~wxDataOutputStream();
|
||||||
|
|
||||||
@@ -70,7 +73,8 @@ class WXDLLEXPORT wxDataOutputStream {
|
|||||||
wxDataOutputStream& operator<<(float f);
|
wxDataOutputStream& operator<<(float f);
|
||||||
|
|
||||||
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
||||||
protected:
|
|
||||||
|
protected:
|
||||||
wxOutputStream *m_output;
|
wxOutputStream *m_output;
|
||||||
bool m_be_order;
|
bool m_be_order;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user