aboutsummaryrefslogtreecommitdiffstats
path: root/src/stringContentHandler.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-07-06 20:28:43 +0000
committerVincent Richard <[email protected]>2005-07-06 20:28:43 +0000
commit53f96cdb7514cab91f3c9ca204ec83cf6fc41664 (patch)
tree468f961f7649c968b93b663a773431afbbe4c904 /src/stringContentHandler.cpp
parent'depcomp' not used. (diff)
downloadvmime-53f96cdb7514cab91f3c9ca204ec83cf6fc41664.tar.gz
vmime-53f96cdb7514cab91f3c9ca204ec83cf6fc41664.zip
Added contentHandler::extractRaw().
Diffstat (limited to 'src/stringContentHandler.cpp')
-rw-r--r--src/stringContentHandler.cpp6
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());