uiservicetab/vimpstengine/inc/mvimpstenginefactory.h
branchRCL_3
changeset 28 3104fc151679
parent 27 2b7283837edb
child 29 9a48e301e94b
--- a/uiservicetab/vimpstengine/inc/mvimpstenginefactory.h	Thu Aug 19 09:41:53 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,69 +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:  factory class for Engine component
-*
-*/
-
-
-#ifndef MVIMPSTENGINEFACTORY_H
-#define MVIMPSTENGINEFACTORY_H
-#include <e32def.h>
-
-//FORWARD DECLARATION
-class MVIMPSTEngine;
-
-//CLASS  DECLARATION
-/**
- *  
- *  This class list the M-Class for Engine factory
- *
- *  @lib vimpstengine.lib
- *  @since S60 5.0
- */
-class MVIMPSTEngineFactory
-	{
-		
-	public:	
-	
-		/*
-		* Fills the RPointerArray passed as a Param
-		* with engine items for each service
-		* The Owenership of the ptr is not transferred to the caller
-		* @param - RPointerArray which upon completion of this function
-		*  will hold the pointers to each engine instance created for 
-		*  different services
-		*/
-		virtual	void GetServiceEnginePtr(
-				RPointerArray<MVIMPSTEngine>& serviceIdArray) const = 0;
-	  	/**
-		 * FindService finds if a given serviceid is installed.
-		 * @param aServiceId service id
-		 * @return TInt index of the service else retunr KErrNotFOund.
-		 **/
-	   	virtual	TInt FindService(
-				TUint aServiceId ) const = 0;
-				
-				
-	  	/**
-		* ~CVIMPSTEngineFactory 
-		* dont call delete 
-		*/
-		virtual ~MVIMPSTEngineFactory() 
-			{
-				
-			}
-		
-	};
-
-#endif //MVIMPSTENGINEFACTORY_H
\ No newline at end of file