aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/rfc822/MCMultipart.h
blob: 6b00c08bb70483256167c3b4eeb6cabcd7bda9c7 (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_MCMULTIPART_H

#define MAILCORE_MCMULTIPART_H

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

#ifdef __cplusplus

namespace mailcore {
    
    class Multipart : public AbstractMultipart {
    public:
        Multipart();
        virtual ~Multipart();
        
    public: // subclass behavior
        Multipart(Multipart * other);
        virtual Object * copy();
    };
    
}

#endif

#endif