diff options
Diffstat (limited to 'src/header.cpp')
-rw-r--r-- | src/header.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/header.cpp b/src/header.cpp index fbe6921f..492b4576 100644 --- a/src/header.cpp +++ b/src/header.cpp @@ -510,4 +510,14 @@ const std::vector <headerField*> header::getFieldList() } +const std::vector <const component*> header::getChildComponents() const +{ + std::vector <const component*> list; + + copy_vector(m_fields, list); + + return (list); +} + + } // vmime |