aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCMessagePart.cc
blob: 8a2122c389ba204993419e4a09ed4c10622594c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "MCMessagePart.h"

using namespace mailcore;

MessagePart::MessagePart()
{
}

MessagePart::MessagePart(MessagePart * other) : AbstractMessagePart(other)
{
}

MessagePart::~MessagePart()
{
}

#if 0
String * MessagePart::className()
{
    return MCSTR("MessagePart");
}
#endif

Object * MessagePart::copy()
{
    return new MessagePart(this);
}