home *** CD-ROM | disk | FTP | other *** search
- //
- // $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_
-