diff options
Diffstat (limited to 'src/fileAttachment.hpp')
-rw-r--r-- | src/fileAttachment.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fileAttachment.hpp b/src/fileAttachment.hpp index 66cb258d..d25af394 100644 --- a/src/fileAttachment.hpp +++ b/src/fileAttachment.hpp @@ -33,7 +33,7 @@ class fileAttachment : public defaultAttachment public: fileAttachment(const string& filename, const mediaType& type, const text& desc = NULL_TEXT); - fileAttachment(const string& filename, const mediaType& type, const class encoding& enc, const text& desc = NULL_TEXT); + fileAttachment(const string& filename, const mediaType& type, const encoding& enc, const text& desc = NULL_TEXT); class fileInfo { @@ -71,14 +71,14 @@ public: datetime* m_readDate; }; - const class fileInfo& fileInfo() const { return (m_fileInfo); } - class fileInfo& fileInfo() { return (m_fileInfo); } + const fileInfo& getFileInfo() const; + fileInfo& getFileInfo(); -protected: +private: void setData(const string& filename); - class fileInfo m_fileInfo; + fileInfo m_fileInfo; void generatePart(bodyPart& part) const; }; |