seek to the end of the file */
| 80 | virtual BOOL seekEnd(const I64 distance=0) = 0; |
| 81 | /* seek to the end of the file */ |
| 82 | virtual BOOL skipBytes(const U32 num_bytes) { I64 curr = tell(); return seek(curr + num_bytes); }; |
| 83 | /* constructor */ |
| 84 | inline ByteStreamIn() { bit_buffer = 0; num_buffer = 0; }; |
| 85 | /* destructor */ |