home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 Mobile
/
Chip_Mobile_2001.iso
/
palm
/
business
/
printcar
/
printcar.exe
/
src
/
Util
/
OutputStream.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-06-03
|
453b
|
26 lines
//
// $Id: OutputStream.h,v 1.1.1.1 2000/06/02 22:23:04 sergey Exp $
//
#ifndef _OutputStream_h_
#define _OutputStream_h_
namespace Util
{
//
// Input stream interface class
//
class OutputStream
{
protected:
OutputStream() {}
virtual ~OutputStream() {}
public:
virtual void writeData(const void* data, int size) = 0;
};
}
// namespace Util
#endif // _OutputStream_h_