| 274 | } |
| 275 | |
| 276 | void Md4Block::TxComment(const std::string &tx_comment) { |
| 277 | block_type_ = "##MD"; |
| 278 | auto xml = CreateXmlFile(); |
| 279 | xml->ParseString(XmlSnippet()); |
| 280 | xml->SetProperty("TX", tx_comment); |
| 281 | XmlSnippet(xml->WriteString(true)); |
| 282 | } |
| 283 | |
| 284 | std::string Md4Block::TxComment() const { |
| 285 | if (IsTxtBlock()) { |
nothing calls this directly
no test coverage detected