* Changed "true" to "TRUE" in some file: "true" doesn't exist in BC++ 5
* Added wxDataStream and wxProcess * Added the asynchronous end process notification on GTK and MSW * Updated configure* and setup.h * Added extended.c: Apple code to encode/decode float in IEEE format this code is removable by disabling USE_APPLE_CODEC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
46
include/wx/datstrm.h
Normal file
46
include/wx/datstrm.h
Normal file
@@ -0,0 +1,46 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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 __DATSTREAMH__
|
||||
#define __DATSTREAMH__
|
||||
|
||||
#ifdef __GNUG__
|
||||
#pragma interface "datstrm.h"
|
||||
#endif
|
||||
|
||||
#include "wx/wx.h"
|
||||
|
||||
class wxDataStream {
|
||||
public:
|
||||
wxDataStream(iostream& s);
|
||||
wxDataStream(istream& s);
|
||||
wxDataStream(ostream& s);
|
||||
|
||||
virtual ~wxDataStream();
|
||||
|
||||
unsigned long Read32();
|
||||
unsigned short Read16();
|
||||
unsigned char Read8();
|
||||
double ReadDouble();
|
||||
wxString ReadLine();
|
||||
|
||||
void Write32(unsigned long i);
|
||||
void Write16(unsigned short i);
|
||||
void Write8(unsigned char i);
|
||||
void WriteDouble(double d);
|
||||
void WriteLine(const wxString& line);
|
||||
protected:
|
||||
istream *m_istream;
|
||||
ostream *m_ostream;
|
||||
};
|
||||
|
||||
#endif
|
||||
// __HELPBASEH__
|
Reference in New Issue
Block a user