| 549 | } |
| 550 | |
| 551 | std::string MdfBlock::ReadTx4(std::streambuf& buffer, size_t index_tx) const { |
| 552 | if (Link(index_tx) > 0) { |
| 553 | SetFilePosition(buffer, Link(index_tx)); |
| 554 | Tx4Block tx; |
| 555 | tx.Init(*this); |
| 556 | tx.Read(buffer); |
| 557 | return tx.Text(); |
| 558 | } |
| 559 | return {}; |
| 560 | } |
| 561 | |
| 562 | const Md4Block *MdfBlock::Md4() const { |
| 563 | return !md_comment_ ? nullptr |
nothing calls this directly
no test coverage detected