1998-07-01 17:26:46 +00: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-15 00:23:28 +00:00
|
|
|
#ifndef _WX_DATSTREAM_H_
|
|
|
|
#define _WX_DATSTREAM_H_
|
1998-07-01 17:26:46 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "datstrm.h"
|
|
|
|
#endif
|
|
|
|
|
1999-08-20 22:52:21 +00:00
|
|
|
#include "wx/stream.h"
|
1998-07-01 17:26:46 +00:00
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#if wxUSE_STREAMS
|
|
|
|
|
1999-07-07 17:45:35 +00:00
|
|
|
class WXDLLEXPORT wxDataInputStream {
|
1998-07-01 17:26:46 +00:00
|
|
|
public:
|
1998-07-12 15:16:09 +00:00
|
|
|
wxDataInputStream(wxInputStream& s);
|
1999-07-07 17:45:35 +00:00
|
|
|
~wxDataInputStream();
|
1998-07-01 17:26:46 +00:00
|
|
|
|
1999-06-29 17:53:42 +00:00
|
|
|
wxUint32 Read32();
|
|
|
|
wxUint16 Read16();
|
|
|
|
wxUint8 Read8();
|
1998-07-01 17:26:46 +00:00
|
|
|
double ReadDouble();
|
1998-07-03 17:44:34 +00:00
|
|
|
wxString ReadString();
|
1999-07-07 17:45:35 +00: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 09:05:25 +00:00
|
|
|
|
1999-08-05 17:42:09 +00:00
|
|
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
1999-07-07 17:45:35 +00:00
|
|
|
protected:
|
|
|
|
wxInputStream *m_input;
|
1999-07-24 09:05:25 +00:00
|
|
|
bool m_be_order;
|
1998-07-12 15:16:09 +00:00
|
|
|
};
|
|
|
|
|
1999-07-07 17:45:35 +00:00
|
|
|
class WXDLLEXPORT wxDataOutputStream {
|
1998-07-12 15:16:09 +00:00
|
|
|
public:
|
|
|
|
wxDataOutputStream(wxOutputStream& s);
|
1999-07-07 17:45:35 +00:00
|
|
|
~wxDataOutputStream();
|
1998-07-01 17:26:46 +00:00
|
|
|
|
1999-06-29 17:53:42 +00:00
|
|
|
void Write32(wxUint32 i);
|
|
|
|
void Write16(wxUint16 i);
|
|
|
|
void Write8(wxUint8 i);
|
1998-07-01 17:26:46 +00:00
|
|
|
void WriteDouble(double d);
|
1998-07-03 17:44:34 +00:00
|
|
|
void WriteString(const wxString& string);
|
1999-07-07 17:45:35 +00: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 17:42:09 +00:00
|
|
|
void BigEndianOrdered(bool be_order) { m_be_order = be_order; }
|
1999-07-07 17:45:35 +00:00
|
|
|
protected:
|
|
|
|
wxOutputStream *m_output;
|
1999-07-24 09:05:25 +00:00
|
|
|
bool m_be_order;
|
1998-07-01 17:26:46 +00:00
|
|
|
};
|
|
|
|
|
1999-06-15 20:21:59 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_STREAMS
|
|
|
|
|
1998-07-01 17:26:46 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_DATSTREAM_H_
|