| 22 | namespace exporter { |
| 23 | |
| 24 | void ByteArray::setPosition(size_t value) { |
| 25 | if (value < dataView.size()) { |
| 26 | _position = value; |
| 27 | _bitPosition = _position * 8; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | void ByteArray::skip(size_t numBytes) { |
| 32 | if (!checkEndOfFile(numBytes)) { |
no test coverage detected