00001 /*************************************************************************** 00002 Revision Control Information 00003 $Revision: 1.1.1.1 $ 00004 $Log: FileInputStream.h,v $ 00005 Revision 1.1.1.1 2001/10/26 00:22:57 mroman 00006 First import of Gaia 00007 00008 ***************************************************************************/ 00009 00010 #ifndef _FILE_INPUT_STREAM_ 00011 #define _FILE_INPUT_STREAM_ 00012 00013 #include "OSDependent/Support/InputStream.h" 00014 #include "OSDependent/File.h" 00015 00016 class FileInputStream : public InputStream { 00017 private: 00018 File _file; 00019 00020 public: 00021 FileInputStream(const char *fileName); 00022 virtual ~FileInputStream(); 00023 00024 int read(void *buf, int len); 00025 bool operator!(); 00026 }; 00027 00028 #endif // _FILE_INPUT_STREAM_
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001