c740f49634
* added support for DLL on Borland32 * fixed export bugs * fixed a portability problem in socket.cpp * added a missing function in utilsexc.cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// 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
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DATSTREAM_H_
|
|
#define _WX_DATSTREAM_H_
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "datstrm.h"
|
|
#endif
|
|
|
|
#include <wx/stream.h>
|
|
|
|
class wxDataInputStream: public virtual wxFilterInputStream {
|
|
public:
|
|
wxDataInputStream(wxInputStream& s);
|
|
virtual ~wxDataInputStream();
|
|
|
|
unsigned long Read32();
|
|
unsigned short Read16();
|
|
unsigned char Read8();
|
|
double ReadDouble();
|
|
wxString ReadLine();
|
|
wxString ReadString();
|
|
};
|
|
|
|
class wxDataOutputStream: public virtual wxFilterOutputStream {
|
|
public:
|
|
wxDataOutputStream(wxOutputStream& s);
|
|
virtual ~wxDataOutputStream();
|
|
|
|
void Write32(unsigned long i);
|
|
void Write16(unsigned short i);
|
|
void Write8(unsigned char i);
|
|
void WriteDouble(double d);
|
|
void WriteLine(const wxString& line);
|
|
void WriteString(const wxString& string);
|
|
};
|
|
|
|
class wxDataStream: public wxDataInputStream, public wxDataOutputStream,
|
|
public wxFilterStream {
|
|
public:
|
|
wxDataStream(wxStream& stream);
|
|
};
|
|
|
|
#endif
|
|
// _WX_DATSTREAM_H_
|