| 4229 | }; |
| 4230 | |
| 4231 | LVStreamRef LVCreateBlockWriteStream( LVStreamRef baseStream, int blockSize, int blockCount ) |
| 4232 | { |
| 4233 | if ( baseStream.isNull() || baseStream->GetMode()==LVOM_READ ) |
| 4234 | return baseStream; |
| 4235 | return LVStreamRef( new LVBlockWriteStream(baseStream, blockSize, blockCount) ); |
| 4236 | } |
| 4237 | |
| 4238 | |
| 4239 |
no test coverage detected