22 lines
440 B
Objective-C
22 lines
440 B
Objective-C
//
|
|
// MCONNTPDisconnectOperation.h
|
|
// mailcore2
|
|
//
|
|
// Created by Robert Widmann on 8/13/14.
|
|
// Copyright (c) 2014 MailCore. All rights reserved.
|
|
//
|
|
|
|
#ifndef MAILCORE_MCONNTPDICONNECTOPERATION_H
|
|
|
|
#define MAILCORE_MCONNTPDICONNECTOPERATION_H
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <MailCore/MCONNTPOperation.h>
|
|
|
|
/* The class is used to perform a disconnect operation. */
|
|
@interface MCONNTPDisconnectOperation : NSObject
|
|
|
|
@end
|
|
|
|
#endif
|