aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/imap/MCIMAPMessagePart.cc
blob: b250ef4b1dd9e6f7712f0b46dfda3daf3ea09c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "MCIMAPMessagePart.h"

using namespace mailcore;

IMAPMessagePart::IMAPMessagePart()
{
}

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

IMAPMessagePart::~IMAPMessagePart()
{
}

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