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 >
C/C++ Source or Header  |  2000-06-03  |  453b  |  26 lines

  1. //
  2. // $Id: OutputStream.h,v 1.1.1.1 2000/06/02 22:23:04 sergey Exp $
  3. //
  4.  
  5. #ifndef _OutputStream_h_
  6. #define _OutputStream_h_
  7.  
  8. namespace Util
  9. {
  10.     //
  11.     // Input stream interface class
  12.     //
  13.     class OutputStream
  14.     {
  15.     protected:
  16.         OutputStream() {}
  17.         virtual ~OutputStream() {}
  18.  
  19.     public:
  20.         virtual void writeData(const void* data, int size) = 0;
  21.     };
  22. }
  23. // namespace Util
  24.  
  25. #endif // _OutputStream_h_
  26.