home *** CD-ROM | disk | FTP | other *** search
- /* =================
- * PedStreamInput.hh
- * =================
- *
- * Implemented by PedStreamInput.cc
- */
-
- #pragma once
-
- #include "PedObject.hh"
-
- class PedStreamInput : public PedObject {
- public:
- PedStreamInput();
- virtual ~PedStreamInput();
-
- virtual short Flush();
- virtual short GetByte();
- virtual short Unget();
- //virtual long GetChunk(long inCount, char *inBuf);
-
- //virtual long SizeOfNextChunk();
- //virtual long CountAheadThroughChar(char inChar);
- virtual bool AtEOF();
-
- protected:
- //bool mCanUnget;
- bool mEOF;
- };
-