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/relay.cpp | |
parent | Updated ChangeLog. (diff) | |
download | vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.tar.gz vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.zip |
Added component::getChildComponents() function.
Diffstat (limited to 'src/relay.cpp')
-rw-r--r-- | src/relay.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/relay.cpp b/src/relay.cpp index 32cc99d8..b2a4d102 100644 --- a/src/relay.cpp +++ b/src/relay.cpp @@ -334,4 +334,11 @@ std::vector <string>& relay::getWithList() } +const std::vector <const component*> relay::getChildComponents() const +{ + // TODO: should fields inherit from 'component'? (using typeAdapter) + return std::vector <const component*>(); +} + + } // vmime |