home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedStreamInput.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  533 b   |  30 lines

  1. /*    =================
  2.  *    PedStreamInput.hh
  3.  *    =================
  4.  *    
  5.  *    Implemented by PedStreamInput.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "PedObject.hh"
  11.  
  12. class PedStreamInput : public PedObject {
  13. public:
  14.     PedStreamInput();
  15.     virtual ~PedStreamInput();
  16.     
  17.     virtual short Flush();
  18.     virtual short GetByte();
  19.     virtual short Unget();
  20.     //virtual long GetChunk(long inCount, char *inBuf);
  21.     
  22.     //virtual long SizeOfNextChunk();
  23.     //virtual long CountAheadThroughChar(char inChar);
  24.     virtual bool AtEOF();
  25.         
  26. protected:
  27.     //bool mCanUnget;
  28.     bool mEOF;
  29. };
  30.