00001 #ifndef _INPUT_STREAM_H_ 00002 #define _INPUT_STREAM_H_ 00003 00004 /* 00005 * Abstract interface for input streams. 00006 */ 00007 class InputStream { 00008 public: 00009 virtual ~InputStream() {} 00010 virtual int read(void* buf, int len) = 0; 00011 }; 00012 00013 #endif // _INPUT_STREAM_H_
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001