1998-07-01 13:26:46 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: datstrm.h
|
|
|
|
// Purpose: Data stream classes
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 28/06/1998
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Guilhem Lavaux
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_DATSTREAM_H_
|
|
|
|
#define _WX_DATSTREAM_H_
|
1998-07-01 13:26:46 -04:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "datstrm.h"
|
|
|
|
#endif
|
|
|
|
|
1999-08-20 18:52:21 -04:00
|
|
|
#include "wx/stream.h"
|
1998-07-01 13:26:46 -04:00
|
|
|
|
1999-06-15 16:21:59 -04:00
|
|
|
#if wxUSE_STREAMS
|
|
|
|
|
1999-07-07 13:45:35 -04:00
|
|
|
class WXDLLEXPORT wxDataInputStream {
|
1998-07-01 13:26:46 -04:00
|
|
|
public:
|
1998-07-12 11:16:09 -04:00
|
|
|
wxDataInputStream(wxInputStream& s);
|
1999-07-07 13:45:35 -04:00
|
|
|
~wxDataInputStream();
|
1998-07-01 13:26:46 -04:00
|
|
|
|
1999-06-29 13:53:42 -04:00
|
|
|
wxUint32 Read32();
|
|
|
|
wxUint16 Read16();
|
|
|
|
wxUint8 Read8();
|
1998-07-01 13:26:46 -04:00
|
|
|
double ReadDouble();
|
1998-07-03 13:44:34 -04:00
|
|
|
wxString ReadString();
|
1999-07-07 13:45:35 -04:00
|
|
|
|
|
|
|
wxDataInputStream& operator>>(wxString& s);
|
|
|
|
wxDataInputStream& operator>>(wxInt8& c);
|
|
|
|
wxDataInputStream& operator>>(wxInt16& i);
|
|
|
|
wxDataInputStream& operator>>(wxInt32& i);
|
|
|
|
wxDataInputStream& operator>>(wxUint8& c);
|
|
|
|
wxDataInputStream& operator>>(wxUint16& i);
|
|
|
|
wxDataInputStream& operator>>(wxUint32& i);
|
|
|
|
wxDataInputStream& operator>>(double& i);
|
|
|
|
wxDataInputStream& operator>>(float& f);
|
1999-07-24 05:05:25 -04:00
|
|
|
|
1999-08-05 13:42:09 -04:00
|
|
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
1999-07-07 13:45:35 -04:00
|
|
|
protected:
|
|
|
|
wxInputStream *m_input;
|
1999-07-24 05:05:25 -04:00
|
|
|
bool m_be_order;
|
1998-07-12 11:16:09 -04:00
|
|
|
};
|
|
|
|
|
1999-07-07 13:45:35 -04:00
|
|
|
class WXDLLEXPORT wxDataOutputStream {
|
1998-07-12 11:16:09 -04:00
|
|
|
public:
|
|
|
|
wxDataOutputStream(wxOutputStream& s);
|
1999-07-07 13:45:35 -04:00
|
|
|
~wxDataOutputStream();
|
1998-07-01 13:26:46 -04:00
|
|
|
|
1999-06-29 13:53:42 -04:00
|
|
|
void Write32(wxUint32 i);
|
|
|
|
void Write16(wxUint16 i);
|
|
|
|
void Write8(wxUint8 i);
|
1998-07-01 13:26:46 -04:00
|
|
|
void WriteDouble(double d);
|
1998-07-03 13:44:34 -04:00
|
|
|
void WriteString(const wxString& string);
|
1999-07-07 13:45:35 -04:00
|
|
|
|
|
|
|
wxDataOutputStream& operator<<(const wxChar *string);
|
|
|
|
wxDataOutputStream& operator<<(wxString& string);
|
|
|
|
wxDataOutputStream& operator<<(wxInt8 c);
|
|
|
|
wxDataOutputStream& operator<<(wxInt16 i);
|
|
|
|
wxDataOutputStream& operator<<(wxInt32 i);
|
|
|
|
wxDataOutputStream& operator<<(wxUint8 c);
|
|
|
|
wxDataOutputStream& operator<<(wxUint16 i);
|
|
|
|
wxDataOutputStream& operator<<(wxUint32 i);
|
|
|
|
wxDataOutputStream& operator<<(double f);
|
|
|
|
wxDataOutputStream& operator<<(float f);
|
|
|
|
|
1999-08-05 13:42:09 -04:00
|
|
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
1999-07-07 13:45:35 -04:00
|
|
|
protected:
|
|
|
|
wxOutputStream *m_output;
|
1999-07-24 05:05:25 -04:00
|
|
|
bool m_be_order;
|
1998-07-01 13:26:46 -04:00
|
|
|
};
|
|
|
|
|
1999-06-15 16:21:59 -04:00
|
|
|
#endif
|
|
|
|
// wxUSE_STREAMS
|
|
|
|
|
1998-07-01 13:26:46 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_DATSTREAM_H_
|