aboutsummaryrefslogtreecommitdiffstats
path: root/vmime/messaging/message.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'vmime/messaging/message.hpp')
-rw-r--r--vmime/messaging/message.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/vmime/messaging/message.hpp b/vmime/messaging/message.hpp
index b423e039..3f87f8f5 100644
--- a/vmime/messaging/message.hpp
+++ b/vmime/messaging/message.hpp
@@ -37,12 +37,12 @@ class structure;
/** A MIME part in a message.
*/
-class part
+class part : public object
{
protected:
part() { }
- part(const part&) { }
+ part(const part&) : object() { }
virtual ~part() { }
@@ -114,12 +114,12 @@ public:
/** Structure of a MIME part/message.
*/
-class structure
+class structure : public object
{
protected:
structure() { }
- structure(const structure&) { }
+ structure(const structure&) : object() { }
public:
@@ -152,12 +152,12 @@ public:
/** Abstract representation of a message in a store/transport service.
*/
-class message
+class message : public object
{
protected:
message() { }
- message(const message&) { }
+ message(const message&) : object() { }
public: