diff options
| author | Vincent Richard <[email protected]> | 2004-12-20 13:33:55 +0100 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2004-12-20 13:33:55 +0100 |
| commit | 3217dd9bf9476a544d450e9ac636ca629ad141d9 (patch) | |
| tree | 897f107e1c89a3021c7f3687649bdf8eb0c9477e /src/addressList.cpp | |
| parent | Updated ChangeLog. (diff) | |
| download | vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.tar.gz vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.zip | |
Added component::getChildComponents() function.
Diffstat (limited to 'src/addressList.cpp')
| -rw-r--r-- | src/addressList.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/addressList.cpp b/src/addressList.cpp index b10bfe1a..2ac24776 100644 --- a/src/addressList.cpp +++ b/src/addressList.cpp @@ -248,6 +248,14 @@ const std::vector <address*> addressList::getAddressList() } +const std::vector <const component*> addressList::getChildComponents() const +{ + std::vector <const component*> list; + + copy_vector(m_list, list); + + return (list); +} } // vmime |
