blob: e2ecebb032302fd7368da6140aac7dfe36391c37 (
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
|
//
// MCIMAPConnectOperation.h
// mailcore2
//
// Created by Ryan Walklin on 6/09/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef __MAILCORE_MCIMAPCONNECTOPERATION_H_
#define __MAILCORE_MCIMAPCONNECTOPERATION_H_
#include <MailCore/MCIMAPOperation.h>
#ifdef __cplusplus
namespace mailcore {
class IMAPConnectOperation : public IMAPOperation {
public: // subclass behavior
virtual void main();
};
}
#endif
#endif /* defined(__MAILCORE_MCIMAPCONNECTOPERATION_H_) */
|