Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

InputStream.h

Go to the documentation of this file.
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_

Generated on Mon Oct 7 09:33:29 2002 for Gaia by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001