| 352 | } |
| 353 | |
| 354 | size_t SubByteReader::nrBytesLeft() const |
| 355 | { |
| 356 | if (this->byteVector.size() <= this->posInBufferBytes) |
| 357 | return 0; |
| 358 | return this->byteVector.size() - this->posInBufferBytes - 1; |
| 359 | } |
| 360 | |
| 361 | ByteVector SubByteReader::peekBytes(unsigned nrBytes) const |
| 362 | { |
no test coverage detected