diff options
author | Vincent Richard <[email protected]> | 2005-07-15 09:51:55 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-07-15 09:51:55 +0000 |
commit | b8b096c44ffc63ed1fc4514a6b7f20bb87c1bfb8 (patch) | |
tree | ed257b2492d4126944ad21fdcffde70264dbaa4b /examples/example5.cpp | |
parent | Reference counting and smart pointers. (diff) | |
download | vmime-b8b096c44ffc63ed1fc4514a6b7f20bb87c1bfb8.tar.gz vmime-b8b096c44ffc63ed1fc4514a6b7f20bb87c1bfb8.zip |
Added getName() to retrieve attachment filename.
Diffstat (limited to '')
-rw-r--r-- | examples/example5.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/example5.cpp b/examples/example5.cpp index 3404be97..9456b502 100644 --- a/examples/example5.cpp +++ b/examples/example5.cpp @@ -50,6 +50,7 @@ int main() const vmime::attachment& att = *mp.getAttachmentAt(i); // Media type (content type) is in "att.getType()" + // Name is in "att.getName()" // Description is in "att.getDescription()" // Data is in "att.getData()" } |