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/dateTime.cpp | |
parent | Updated ChangeLog. (diff) | |
download | vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.tar.gz vmime-3217dd9bf9476a544d450e9ac636ca629ad141d9.zip |
Added component::getChildComponents() function.
Diffstat (limited to 'src/dateTime.cpp')
-rw-r--r-- | src/dateTime.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dateTime.cpp b/src/dateTime.cpp index 7760d651..08ad89e9 100644 --- a/src/dateTime.cpp +++ b/src/dateTime.cpp @@ -709,6 +709,12 @@ datetime* datetime::clone() const } +const std::vector <const component*> datetime::getChildComponents() const +{ + return std::vector <const component*>(); +} + + const int datetime::getYear() const { return (m_year); } const int datetime::getMonth() const { return (m_month); } const int datetime::getDay() const { return (m_day); } |