| 20 | */ |
| 21 | |
| 22 | BlockDeviceOutputStream::BlockDeviceOutputStream(BlockDevice& device,uint32_t firstBlock,bool buffered) |
| 23 | : _device(device), |
| 24 | _block(device.getBlockSizeInBytes()) { |
| 25 | |
| 26 | _blockIndex=firstBlock; |
| 27 | _indexInBlock=0; |
| 28 | _buffered=buffered; |
| 29 | } |
| 30 | |
| 31 | |
| 32 | /** |
nothing calls this directly
no test coverage detected