////////////////////////////////////////////////////////////////////////// GetDataForReading //////////////////////////////////////////////////////////////////////////
| 225 | // GetDataForReading |
| 226 | /////////////////////////////////////////////////////////////////////////////// |
| 227 | int8* cBlockRecordFile::GetDataForReading(cBlockRecordFile::tAddr dataAddr, int32& dataSize) //throw (eArchive) |
| 228 | { |
| 229 | ASSERT(mbOpen); |
| 230 | ASSERT(IsValidAddr(dataAddr)); |
| 231 | #ifdef _BLOCKFILE_DEBUG |
| 232 | AssertValid(); |
| 233 | #endif |
| 234 | |
| 235 | return (mvBlocks[dataAddr.mBlockNum].GetDataForReading(dataAddr.mIndex, dataSize)); |
| 236 | } |
| 237 | |
| 238 | /////////////////////////////////////////////////////////////////////////////// |
| 239 | // GetDataForWriting |
no outgoing calls
no test coverage detected