| 538 | } |
| 539 | |
| 540 | std::string MdfBlock::ReadTx3(std::streambuf& buffer, size_t index_tx) const { |
| 541 | if (Link(index_tx) > 0) { |
| 542 | SetFilePosition(buffer, Link(index_tx)); |
| 543 | Tx3Block tx; |
| 544 | tx.Init(*this); |
| 545 | tx.Read(buffer); |
| 546 | return tx.Text(); |
| 547 | } |
| 548 | return {}; |
| 549 | } |
| 550 | |
| 551 | std::string MdfBlock::ReadTx4(std::streambuf& buffer, size_t index_tx) const { |
| 552 | if (Link(index_tx) > 0) { |
nothing calls this directly
no test coverage detected