uiservicetab/vimpstengine/inc/mvimpstenginecontactmgmtextention.h
changeset 15 81eeb8c83ce5
parent 0 5e5d6b214f4f
--- a/uiservicetab/vimpstengine/inc/mvimpstenginecontactmgmtextention.h	Tue Feb 02 10:12:18 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,91 +0,0 @@
-/*
-* 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:  Handles the Contact Management Operations
-*  Part of     : IMUiserviceTab / vimpstengine
-*
-*/
-
-#ifndef __MVIMPSTENGINECONTACTMGMTEXTENTION_H
-#define __MVIMPSTENGINECONTACTMGMTEXTENTION_H
-
-//  INCLUDES
-#include <e32base.h>
-#include "mvimpstengineextentionfeatures.h"
-   
-// CLASS DECLARATION
-/**
- * Contact Management Implementation
- * @lib vimpstengine.lib
- * @since S60 5.0 
- */
-class MVIMPSTEngineContactMgmtExtention :public MVIMPSTEngineExtentionFeatures
-						 	
-    {
-	 
-    public: // New methods MVIMPSTEngineContactMgmtExtention   	
-		
-		/**
-         * Casts MVIMPSTEngineContactMgmtExtention to this interface.
-         *
-         * @precond aExtentionFeature.Type() == TVIMPSTEnums::EServerContactManagement
-         *          Panic(EPanicTypeMismatch)
-         *          is raised if the precondition does not hold.
-         * @param aExtentionFeature    Base Class .
-         * @return Casted inteface for the Contact Mgmt Feature
-         */
-        IMPORT_C static MVIMPSTEngineContactMgmtExtention& Cast(
-                MVIMPSTEngineExtentionFeatures& aExtentionFeature);
-
-        
-        /**
-         * Casts constMVIMPSTEngineContactMgmtExtention to this interface.
-         *
-         * @precond aExtentionFeature.Type() == TVIMPSTEnums::EServerContactManagement
-         *          Panic(EPanicTypeMismatch)
-         *          is raised if the precondition does not hold.
-         * @param aExtentionFeature    Base Class .
-         * @return Casted inteface for the Contact Mgmt Feature
-         */        
-        IMPORT_C static const MVIMPSTEngineContactMgmtExtention& Cast(
-                const MVIMPSTEngineExtentionFeatures& aExtentionFeature);
-                
-        /**
-	     * AddServerContactL
-	     * to add the contact to Server thro XIMP
-		 * @param aContactListID ,in to be added
-		 * @param aUserId , to add.
-		 * @param aNickname to added.
-		 * @ return TInt error if any
-		 */
-         virtual TInt AddServerContactL(const TDesC& aContactList, 
-         						const TDesC& aUserId,const TDesC& aNickname,
-         						TBool aWaitToComplete = ETrue ) = 0;
-        
-        
-         /**
-	     * DeleteServerContactL
-	     * to delete the given contact from server thro XIMP
-		 * @param aContactListID ,from to delete.
-		 * @param aUserId , to delete.
-		 * @return TInt error if any
-		 */
-         virtual TInt DeleteServerContactL( const TDesC& aContactListId, 
-         									const TDesC& aUserId ) = 0;
-	
-        
-    };
-    
-#endif      //__MVIMPSTENGINECONTACTMGMTEXTENTION_H
-
-// End of File