| 565 | } |
| 566 | |
| 567 | void MessageParser::parseStatusNotify(const WXMSG& msg, const Session& session, TemplateValues& tv) const |
| 568 | { |
| 569 | #ifndef NDEBUG |
| 570 | writeFile(combinePath(m_outputPath, "../dbg", "msg_" + std::to_string(msg.type) + msg.msgId + ".txt"), msg.content); |
| 571 | #endif |
| 572 | parseText(msg, session, tv); |
| 573 | } |
| 574 | |
| 575 | void MessageParser::parsePossibleFriend(const WXMSG& msg, const Session& session, TemplateValues& tv) const |
| 576 | { |
nothing calls this directly
no test coverage detected