aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/nntp/MCNNTPFetchAllArticlesOperation.h
blob: 88395deeb5cd8a01d314ac6eb32db635f38e4253 (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
40
41
//
//  MCNNTPFetchAllArticlesOperation.h
//  mailcore2
//
//  Created by Robert Widmann on 8/13/14.
//  Copyright (c) 2014 MailCore. All rights reserved.
//

#ifndef MAILCORE_MCNNTPFETCHARTICLESOPERATION_H

#define MAILCORE_MCNNTPFETCHARTICLESOPERATION_H

#include <MailCore/MCNNTPOperation.h>

#ifdef __cplusplus

namespace mailcore {
    
    class NNTPFetchAllArticlesOperation : public NNTPOperation {
    public:
        NNTPFetchAllArticlesOperation();
        virtual ~NNTPFetchAllArticlesOperation();
        
        virtual void setGroupName(String * groupName);
        virtual String * groupName();
        
        virtual IndexSet * articles();
        
    public: // subclass behavior
        virtual void main();
        
    private:
        String * mGroupName;
        IndexSet * mArticles;
    };
    
}

#endif

#endif