| 43 | } |
| 44 | |
| 45 | mail_message::~mail_message(void) |
| 46 | { |
| 47 | std::vector<mail_attach*>::iterator it; |
| 48 | for (it = attachments_.begin(); it != attachments_.end(); ++it) { |
| 49 | (*it)->~mail_attach(); |
| 50 | } |
| 51 | dbuf_->destroy(); |
| 52 | } |
| 53 | |
| 54 | mail_message& mail_message::set_auth(const char* user, const char* pass) |
| 55 | { |
nothing calls this directly
no test coverage detected