diff options
Diffstat (limited to 'src/component.cpp')
-rw-r--r-- | src/component.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/component.cpp b/src/component.cpp index b8c65cd1..b387b9c5 100644 --- a/src/component.cpp +++ b/src/component.cpp @@ -18,6 +18,7 @@ // #include "component.hpp" +#include "base.hpp" #include <sstream> @@ -26,6 +27,11 @@ namespace vmime { +component::~component() +{ +} + + void component::parse(const string& buffer) { parse(buffer, 0, buffer.length(), NULL); |