| 83 | |
| 84 | |
| 85 | void cEnvelopeParser::NotifyLast(void) |
| 86 | { |
| 87 | if (!m_LastKey.empty()) |
| 88 | { |
| 89 | m_Callbacks.OnHeaderLine(m_LastKey, m_LastValue); |
| 90 | m_LastKey.clear(); |
| 91 | } |
| 92 | m_LastValue.clear(); |
| 93 | } |
| 94 | |
| 95 | |
| 96 |
nothing calls this directly
no test coverage detected