www.pudn.com > doc2pdf-0_7_1.rar > doc2pdf_email.cpp
///////////////////////////////////////////////////////////////////////////// // // Project: Doc2pdf // // File: doc2pdf_email.cpp // // Author(s): Matt Peterson// // Description: Email classes // ///////////////////////////////////////////////////////////////////////////// #include "doc2pdf_email.h" void Doc2pdfEmailList::Empty() { POSITION pos; pos = GetHeadPosition(); while(pos) { delete GetAt(pos); GetNext(pos); } while(GetHeadPosition()) { RemoveHead(); } } Doc2pdfEmailList::~Doc2pdfEmailList() { Empty(); } Doc2pdfAttachment::~Doc2pdfAttachment() { DeleteFile(m_Path); } void Doc2pdfAttachmentList::Empty() { POSITION pos; pos = GetHeadPosition(); while(pos) { delete GetAt(pos); GetNext(pos); } while(GetHeadPosition()) { RemoveHead(); } } Doc2pdfAttachmentList::~Doc2pdfAttachmentList() { Empty(); }