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

  1. /*    =========================
  2.  *    PedStreamInputBufferedText.hh
  3.  *    =========================
  4.  *    
  5.  *    Implemented by PedStreamInputBufferedText.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10. #include "PedStreamInputBuffered.hh"
  11.  
  12. class PedBuffer;
  13. class PedDataSource;
  14.  
  15. class PedStreamInputBufferedText : public PedStreamInputBuffered {
  16. public:
  17.     PedStreamInputBufferedText(PedDataSource &inDataSource);
  18.     virtual ~PedStreamInputBufferedText();
  19.     
  20.     virtual long GetChunk(long inCount, char *inBuf);
  21.     
  22.     virtual long CountAheadThroughChar(char inChar);
  23.     
  24. protected:
  25.     
  26. };
  27.