aboutsummaryrefslogtreecommitdiffstats
path: root/examples/example5.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-07-15 09:51:55 +0000
committerVincent Richard <[email protected]>2005-07-15 09:51:55 +0000
commitb8b096c44ffc63ed1fc4514a6b7f20bb87c1bfb8 (patch)
treeed257b2492d4126944ad21fdcffde70264dbaa4b /examples/example5.cpp
parentReference counting and smart pointers. (diff)
downloadvmime-b8b096c44ffc63ed1fc4514a6b7f20bb87c1bfb8.tar.gz
vmime-b8b096c44ffc63ed1fc4514a6b7f20bb87c1bfb8.zip
Added getName() to retrieve attachment filename.
Diffstat (limited to '')
-rw-r--r--examples/example5.cpp1
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()"
}