email/pop3andsmtpmtm/imapservermtm/inc/cimapcanceltimer.h
changeset 25 84d9eb65b26f
equal deleted inserted replaced
23:238255e8b033 25:84d9eb65b26f
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __CIMAPCANCELTIMER_H__
       
    17 #define __CIMAPCANCELTIMER_H__
       
    18 
       
    19 #include <e32base.h>
       
    20 
       
    21 class CImImap4Session;
       
    22 
       
    23 /**
       
    24 @internalTechnology
       
    25 @released
       
    26 */
       
    27 NONSHARABLE_CLASS(CImapCancelTimer) : public CTimer
       
    28 	{
       
    29 public:
       
    30 	static CImapCancelTimer* NewL(CImImap4Session& aSession);
       
    31 	virtual ~CImapCancelTimer();
       
    32 
       
    33 private:	// methods from CActive
       
    34 	virtual void RunL();
       
    35 	
       
    36 private:
       
    37 	CImapCancelTimer(CImImap4Session& aSession);
       
    38 	
       
    39 private:
       
    40 	CImImap4Session& iSession;
       
    41 	};
       
    42 
       
    43 #endif	//__CIMAPCANCELTIMER_H__