| 245 | } |
| 246 | |
| 247 | void MessageParser::parseImage(const WXMSG& msg, const Session& session, TemplateValues& tv) const |
| 248 | { |
| 249 | std::string vFile = combinePath(m_userBase, "Img", session.getHash(), msg.msgId); |
| 250 | parseImage(m_outputPath, session.getOutputFileName() + "_files", vFile + ".pic", "", msg.msgId + ".jpg", vFile + ".pic_thum", msg.msgId + "_thumb.jpg", tv); |
| 251 | } |
| 252 | |
| 253 | void MessageParser::parseVoice(const WXMSG& msg, const Session& session, TemplateValues& tv) const |
| 254 | { |
nothing calls this directly
no test coverage detected