diff options
author | Vincent Richard <[email protected]> | 2005-10-13 18:58:33 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-10-13 18:58:33 +0000 |
commit | b9471c9543312a7a51ce4bccb23dd02a72b07e61 (patch) | |
tree | 5f58f4d9357dea6d70306d122069b53b97df4a24 /src | |
parent | Don't return references. (diff) | |
download | vmime-b9471c9543312a7a51ce4bccb23dd02a72b07e61.tar.gz vmime-b9471c9543312a7a51ce4bccb23dd02a72b07e61.zip |
Added getPart() and getHeader() on attachment.
Diffstat (limited to 'src')
-rw-r--r-- | src/defaultAttachment.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/defaultAttachment.cpp b/src/defaultAttachment.cpp index 9b1e86e1..909dca10 100644 --- a/src/defaultAttachment.cpp +++ b/src/defaultAttachment.cpp @@ -127,4 +127,16 @@ const encoding defaultAttachment::getEncoding() const } +ref <const object> defaultAttachment::getPart() const +{ + return NULL; +} + + +ref <const header> defaultAttachment::getHeader() const +{ + return NULL; +} + + } // vmime |