| 50 | |
| 51 | |
| 52 | void MultipartWriter::nextPart(const MessageHeader& header) |
| 53 | { |
| 54 | if (_firstPart) |
| 55 | _firstPart = false; |
| 56 | else |
| 57 | _ostr << "\r\n"; |
| 58 | _ostr << "--" << _boundary << "\r\n"; |
| 59 | header.write(_ostr); |
| 60 | _ostr << "\r\n"; |
| 61 | } |
| 62 | |
| 63 | |
| 64 | void MultipartWriter::close() |
no test coverage detected