diff options
author | Vincent Richard <[email protected]> | 2005-07-06 20:28:43 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-07-06 20:28:43 +0000 |
commit | 53f96cdb7514cab91f3c9ca204ec83cf6fc41664 (patch) | |
tree | 468f961f7649c968b93b663a773431afbbe4c904 /src/stringContentHandler.cpp | |
parent | 'depcomp' not used. (diff) | |
download | vmime-53f96cdb7514cab91f3c9ca204ec83cf6fc41664.tar.gz vmime-53f96cdb7514cab91f3c9ca204ec83cf6fc41664.zip |
Added contentHandler::extractRaw().
Diffstat (limited to 'src/stringContentHandler.cpp')
-rw-r--r-- | src/stringContentHandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stringContentHandler.cpp b/src/stringContentHandler.cpp index 812d8550..1d4ccc5c 100644 --- a/src/stringContentHandler.cpp +++ b/src/stringContentHandler.cpp @@ -165,6 +165,12 @@ void stringContentHandler::extract(utility::outputStream& os) const } +void stringContentHandler::extractRaw(utility::outputStream& os) const +{ + m_string.extract(os); +} + + const string::size_type stringContentHandler::getLength() const { return (m_string.length()); |