diff options
author | Vincent Richard <[email protected]> | 2013-06-25 21:36:46 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-06-25 21:36:46 +0000 |
commit | 549a518deb085d66d64d79695875929f4b5958b7 (patch) | |
tree | 142caa76355281f88ccf4aa0a6fd8c8ad808dbca /src/stringContentHandler.cpp | |
parent | New content handler for file. Automatically set file size with file attachment. (diff) | |
download | vmime-549a518deb085d66d64d79695875929f4b5958b7.tar.gz vmime-549a518deb085d66d64d79695875929f4b5958b7.zip |
Added missing constructor.
Diffstat (limited to 'src/stringContentHandler.cpp')
-rw-r--r-- | src/stringContentHandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/stringContentHandler.cpp b/src/stringContentHandler.cpp index 86753a89..52bbd230 100644 --- a/src/stringContentHandler.cpp +++ b/src/stringContentHandler.cpp @@ -32,6 +32,11 @@ namespace vmime { +stringContentHandler::stringContentHandler() +{ +} + + stringContentHandler::stringContentHandler(const string& buffer, const vmime::encoding& enc) : m_encoding(enc), m_string(buffer) { |