aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/pop/MCOPOPFetchHeaderOperation.h
blob: b062904a722e5b1c1d713a1df3951712d6724a67 (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
//
//  MCOFetchHeaderOperation.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 3/29/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCOPOPFETCHHEADEROPERATION_H_

#define __MAILCORE_MCOPOPFETCHHEADEROPERATION_H_

#import <Foundation/Foundation.h>
#import <MailCore/MCOPOPOperation.h>

// This is an asynchronous operation that will fetch the header of a message.
// See MCOPOPSession for more info.

@class MCOMessageHeader;

@interface MCOPOPFetchHeaderOperation : MCOPOPOperation
- (void)start:(void (^)(NSError *error, MCOMessageHeader * header))completionBlock;
@end

#endif