ipsservices/ipssosaoplugin/inc/IpsSosAOSmtpSendWatcher.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 16 Apr 2010 14:51:52 +0300
changeset 18 578830873419
parent 0 8466d47a6819
child 23 2dc6caa42ec3
permissions -rw-r--r--
Revision: 201011 Kit: 201015

/*
* Copyright (c) 2008 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: 
*     Main smpt plugin class
*
*/

#ifndef __CIPSSOSAOSMTPSENDWATCHER_H__
#define __CIPSSOSAOSMTPSENDWATCHER_H__


#include <e32base.h>
#include <e32property.h>

class CMsvSession;
class CIpsSosAOSmtpAgent;

/**
* CIpsSosAOSmtpSendWatcher
*
*/
NONSHARABLE_CLASS (CIpsSosAOSmtpSendWatcher) : 
    public CActive
    {
    public:
    
        /**
        * Symbian OS NewL function
        * @return CIpsSosAOSmtpSendWatcher*, self pointer
        */
        static CIpsSosAOSmtpSendWatcher* NewL( 
            TInt aPriority,
            CMsvSession& aSession );


        /**
        * destructor
        */
        virtual ~CIpsSosAOSmtpSendWatcher();

    private:
    
        /**
        * Constructor
        * @param aPriority active object priority
        */
        CIpsSosAOSmtpSendWatcher( 
            TInt aPriority );

        /**
        * ConstructL
        * Symbian OS second phase constructor.
        */
		void ConstructL( CMsvSession& aSession );

    public:

        /**
        * At
        * @param const TTime&, time when to complete 
        */
		void StartWatch();


	protected:

        /**
        * DoCancel
        * From CActive
        */
		virtual void DoCancel();

        /**
        * RunL
        * From CActive
        */
		virtual void RunL();
		
		/**
		* Function to handle error during running the operation
		* @return KErrNone, when error has been handled
		*/
		virtual TInt RunError( TInt aError );

	protected: // Data
	
	    CIpsSosAOSmtpAgent* iAgent;
        
        RProperty iProperty;
    };
    
#endif /* __CIPSSOSAOSMTPSENDWATCHER_H__ */ 

//EOF