Wtx ~ Wt Extension Library
WtxLib
Attachment.h
1 
2 #ifndef __ATTACHMENT_H___
3 #define __ATTACHMENT_H___
4 
5 namespace Wtx {
6  namespace Eml {
7 
8 class Attachment
9 {
10 public:
11  std::string fileName;
12 
13  std::string contentDescription;
14 
15  std::string spoolFileName;
16 
17  Attachment( const std::string & aFileName, const std::string & aContentDescription, const std::string & aSpoolFileName )
18  : fileName(aFileName),
19  contentDescription(aContentDescription),
20  spoolFileName(aSpoolFileName)
21  {
22  }
23 };
24 
25 
26  } // endnamespace Eml {
27 } // endnamespace Wtx {
28 
29 #endif // ATTACHMENT_H_
30 
31 
witty extension library
Definition: Activity.h:51