29 lines
518 B
C
29 lines
518 B
C
|
//
|
||
|
// 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_) */
|