--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ipsservices/ipssosaoplugin/inc/IpsSosAOSmtpAgent.h Thu Dec 17 08:39:21 2009 +0200
@@ -0,0 +1,102 @@
+/*
+* 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:
+* Always online plugin for freestyle smtp handling
+*
+*/
+
+#ifndef __IPSSOSAOSMTPAGENT_H__
+#define __IPSSOSAOSMTPAGENT_H__
+
+
+#include <e32base.h> // CBase
+#include <msvapi.h>
+
+class CIpsPlgSmtpOperation;
+class CIpsSetDataApi;
+
+/**
+* class CIpsSosAOSmtpAgent;
+*
+*/
+class CIpsSosAOSmtpAgent :
+ public CActive
+ {
+ public:
+ /**
+ * Two phased constructor
+ * @return CIpsSosAOSmtpAgent*, self pointer
+ */
+ static CIpsSosAOSmtpAgent* NewL(
+ CMsvSession& aSession );
+
+ /**
+ * Two phased constructor
+ * @return CIpsSosAOSmtpAgent*, self pointer
+ */
+ static CIpsSosAOSmtpAgent* NewLC(
+ CMsvSession& aSession );
+
+ /**
+ * Destructor
+ */
+ virtual ~CIpsSosAOSmtpAgent();
+
+ virtual void DoCancel();
+ virtual void RunL();
+
+ void HandleSessionEventL(
+ MMsvSessionObserver::TMsvSessionEvent aEvent,
+ TAny* aArg1,
+ TAny* aArg2,
+ TAny* aArg3 );
+
+ void EmptyOutboxNowL( TMsvId aMessage );
+
+ private:
+ /**
+ * Constructor
+ */
+ CIpsSosAOSmtpAgent(
+ CMsvSession& aSession );
+
+ /**
+ * ConstructL
+ * Second phase constructor
+ */
+ void ConstructL();
+
+ void CreateInternalDataL( );
+
+ void ReleaseInternalData( );
+
+
+ private:
+
+
+ //data
+ private:
+
+ CMsvSession& iSession;
+
+ CIpsPlgSmtpOperation* iOperation;
+
+ CIpsSetDataApi* iSettingsApi;
+
+ TInt iError;
+
+ };
+
+#endif /* __IPSSOSAOSMTPAGENT_H__ */
+//EOF