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/text.cpp | |
parent | Updated ChangeLog. (diff) | |
download | vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.tar.gz vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.zip |
Added component::getChildComponents() function.
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/text.cpp b/src/text.cpp index b2f29966..cfbbea7a 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -840,4 +840,11 @@ void text::decodeAndUnfold(const string::const_iterator& inStart, const string:: } +const std::vector <const component*> text::getChildComponents() const +{ + // TODO: 'word' should inherit from 'component' + return std::vector <const component*>(); +} + + } // vmime |