diff options
author | Vincent Richard <[email protected]> | 2004-12-20 12:33:55 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-20 12:33:55 +0000 |
commit | 3217dd9bf9476a544d450e9ac636ca629ad141d9 (patch) | |
tree | 897f107e1c89a3021c7f3687649bdf8eb0c9477e /src/parameter.cpp | |
parent | Updated ChangeLog. (diff) | |
download | vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.tar.gz vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.zip |
Added component::getChildComponents() function.
Diffstat (limited to 'src/parameter.cpp')
-rw-r--r-- | src/parameter.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/parameter.cpp b/src/parameter.cpp index 9feff1cc..a47a5a1a 100644 --- a/src/parameter.cpp +++ b/src/parameter.cpp @@ -149,4 +149,14 @@ void parameter::generateValue(utility::outputStream& os, const string::size_type } +const std::vector <const component*> parameter::getChildComponents() const +{ + std::vector <const component*> list; + + list.push_back(&getValue()); + + return (list); +} + + } // vmime |