32 #ifndef __KMAIL_ATTACHMENTCOLLECTOR_H__
33 #define __KMAIL_ATTACHMENTCOLLECTOR_H__
41 class AttachmentCollector {
43 AttachmentCollector() {}
45 void collectAttachmentsFrom( partNode * node );
47 const std::vector<partNode*> & attachments() const { return mAttachments; }
50 std::vector<partNode*> mAttachments;
53 AttachmentCollector( const AttachmentCollector & );
54 void operator=( const AttachmentCollector & );
|