aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/utils/MCOOperation+Private.h
blob: 94706fdb779206f7ff426b16700eae5c545603ff (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
//
//  MCOOperation+Private.h
//  mailcore2
//
//  Created by Matt Ronge on 01/31/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCOPERATION_PRIVATE_H_

#define __MAILCORE_MCOPERATION_PRIVATE_H_

#ifdef __cplusplus
namespace mailcore {
    class Operation;
}
#endif

// Shhh, secret stuff in here

@interface MCOOperation (Private)
#ifdef __cplusplus
- (id) initWithMCOperation:(mailcore::Operation *)op;
#endif
- (void) start;
@end

#endif