diff -r 011f79704660 -r cdd802add233 emailuis/nmframeworkadapter/inc/nmfwaremovedraftmessageoperation.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emailuis/nmframeworkadapter/inc/nmfwaremovedraftmessageoperation.h Thu Jul 22 16:30:28 2010 +0100 @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). + * All rights reserved. + * This component and the accompanying materials are made available + * under the terms of "Eclipse Public License v1.0" + * which accompanies this distribution, and is available + * at the URL "http://www.eclipse.org/legal/epl-v10.html". + * + * Initial Contributors: + * Nokia Corporation - initial contribution. + * + * Contributors: + * + * Description: + * + */ + +#ifndef NMFWAREMOVEDRAFTMESSAGEOPERATION_H_ +#define NMFWAREMOVEDRAFTMESSAGEOPERATION_H_ + +#include +#include +#include +#include +#include + +class NmMessage; +class NmDataPluginInterface; +class CFSMailClient; + +class NmFwaRemoveDraftMessageOperation : public NmOperation, + public MFSMailRequestObserver +{ + Q_OBJECT +public: + NmFwaRemoveDraftMessageOperation(NmDataPluginInterface &pluginInterface, + NmMessage *message, + CFSMailClient &mailClient); + + // from MFSMailRequestObserver + void RequestResponseL(TFSProgress aEvent, TInt aRequestId); + +protected: + void doRunAsyncOperation(); + void doCompleteOperation(); + void doCancelOperation(); + +private: + ~NmFwaRemoveDraftMessageOperation(); + + void removeMessageL(); + +private: + NmDataPluginInterface &mPluginInterface; + NmMessage *mMessage; // Owned + CFSMailClient &mMailClient; + TInt mRequestId; +}; + +#endif /* NMFWAREMOVEDRAFTMESSAGEOPERATION_H_ */