* Make Stream base functions public

This commit is contained in:
Phillip Stephens 2015-02-21 11:54:46 -08:00
parent 73592e0a86
commit 68d369554d
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public:
virtual bool atEnd() const= 0; virtual bool atEnd() const= 0;
virtual atUint64 position() const= 0; virtual atUint64 position() const= 0;
virtual atUint64 length() const= 0; virtual atUint64 length() const= 0;
protected: public:
virtual void seekBit (int){THROW_NOT_IMPLEMENTED_EXCEPTION();} virtual void seekBit (int){THROW_NOT_IMPLEMENTED_EXCEPTION();}
// Reading // Reading
virtual bool readBit() {THROW_NOT_IMPLEMENTED_EXCEPTION();} virtual bool readBit() {THROW_NOT_IMPLEMENTED_EXCEPTION();}