| 505 | } |
| 506 | |
| 507 | void MdfBlock::WriteMdComment(std::streambuf& buffer, size_t index_md) { |
| 508 | if (md_comment_ && Link(index_md) == 0) { |
| 509 | md_comment_->Write(buffer); |
| 510 | UpdateLink(buffer, index_md, md_comment_->FilePosition()); |
| 511 | } |
| 512 | } |
| 513 | /* |
| 514 | void MdfBlock::ReadMdComment(std::FILE *file, size_t index_md) { |
| 515 | if (!md_comment_ && Link(index_md) > 0) { |
nothing calls this directly
no test coverage detected