aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/imap/MCIMAPSubscribeFolderOperation.h
blob: 00db56fae96737612da34e6d914bc63612cfe285 (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
28
29
30
31
32
33
34
35
36
37
38
39
//
//  MCIMAPSubscribeFolderOperation.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 1/12/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCIMAPSUBSCRIBEFOLDEROPERATION_H

#define MAILCORE_MCIMAPSUBSCRIBEFOLDEROPERATION_H

#include <MailCore/MCIMAPOperation.h>

#ifdef __cplusplus

namespace mailcore {
    
    class MAILCORE_EXPORT IMAPSubscribeFolderOperation : public IMAPOperation {
    public:
        IMAPSubscribeFolderOperation();
        virtual ~IMAPSubscribeFolderOperation();
        
        virtual void setUnsubscribeEnabled(bool enabled);
        virtual bool isUnsubscribeEnabled();
        
    public: // subclass behavior
        virtual void main();
        
    private:
        bool mUnsubscribeEnabled;
        
    };
    
}

#endif

#endif