2 #ifndef __ATTACHMENT_H___ 3 #define __ATTACHMENT_H___ 13 std::string contentDescription;
15 std::string spoolFileName;
17 Attachment(
const std::string & aFileName,
const std::string & aContentDescription,
const std::string & aSpoolFileName )
18 : fileName(aFileName),
19 contentDescription(aContentDescription),
20 spoolFileName(aSpoolFileName)
29 #endif // ATTACHMENT_H_