aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCMessagePart.h
blob: 894cd3e5f19510acb87e6763f33035461a7cfb9a (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
#ifndef MAILCORE_MCMESSAGEPART_H

#define MAILCORE_MCMESSAGEPART_H

#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCAbstractMessagePart.h>

#ifdef __cplusplus

namespace mailcore {
    
    class MAILCORE_EXPORT MessagePart : public AbstractMessagePart {
    public:
        MessagePart();
        virtual ~MessagePart();
        
    public: // subclass behavior
        MessagePart(MessagePart * other);
        virtual Object * copy();
    };
    
}

#endif

#endif