// // MCIMAPDeleteFolderOperation.h // mailcore2 // // Created by DINH Viêt Hoà on 1/12/13. // Copyright (c) 2013 MailCore. All rights reserved. // #ifndef __MAILCORE_MCIMAPDELETEFOLDEROPERATION_H_ #define __MAILCORE_MCIMAPDELETEFOLDEROPERATION_H_ #include #ifdef __cplusplus namespace mailcore { class IMAPDeleteFolderOperation : public IMAPOperation { public: IMAPDeleteFolderOperation(); virtual ~IMAPDeleteFolderOperation(); public: // subclass behavior virtual void main(); }; } #endif #endif