| 17 | */ |
| 18 | |
| 19 | BlockDeviceInputStream::BlockDeviceInputStream(BlockDevice& device,uint32_t firstBlock) |
| 20 | : _device(device), |
| 21 | _block(device.getBlockSizeInBytes()) { |
| 22 | |
| 23 | _blockIndex=_originalBlockIndex=firstBlock; |
| 24 | _indexInBlock=0; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | /** |
nothing calls this directly
no test coverage detected