omxil/mmilapi/unittest/inc/ilcomponentif.h
changeset 56 b6488ac24ddc
parent 47 481b3bce574a
child 57 1cbb0d5bf7f2
equal deleted inserted replaced
47:481b3bce574a 56:b6488ac24ddc
     1 // Copyright (c) 2008-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 ILCOMPONENTIF_H
       
    17 #define ILCOMPONENTIF_H
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <ecom/ecom.h>
       
    21 
       
    22 #include "milcomponentif.h"
       
    23 
       
    24 /**
       
    25 	Generic ECom plugin class for creating MILComponentIf instances.
       
    26 	@see MILComponentIf
       
    27 */
       
    28 class CILComponentIf :	public CBase,
       
    29 						public MILComponentIf
       
    30 	{
       
    31 public:
       
    32 	inline static CILComponentIf* CreateImplementationL(TUid aImplementationUid);
       
    33 
       
    34 	inline virtual ~CILComponentIf();
       
    35 
       
    36 private:
       
    37 	TUid iDtor_ID_Key;	
       
    38 	};
       
    39 
       
    40 #include "ilcomponentif.inl"
       
    41 
       
    42 #endif // ILCOMPONENTIF_H