idlehomescreen/xmluirendering/ecomelement/xndomvisitor/src/xndomvisitorproxy.cpp
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  ECom plugins implementation proxy
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include    "xndomvisitor.h"
       
    22 #include    "xndomvisitor.rh"
       
    23 
       
    24 #include	<e32base.h>
       
    25 #include 	<ecom/implementationproxy.h>
       
    26 
       
    27 
       
    28 
       
    29 // Provides a key value pair table, this is used to identify
       
    30 // the correct construction function for the requested interface.
       
    31 const TImplementationProxy ImplementationTable[] =
       
    32 	{
       
    33 #ifdef __EABI__ 
       
    34 	IMPLEMENTATION_PROXY_ENTRY( KXnDomVisitorImplUid, CXnDomVisitor::NewL )
       
    35 #else
       
    36     {KXnDomVisitorImplUid, CXnDomVisitor::NewL }
       
    37 #endif
       
    38 	};
       
    39 
       
    40 // Function used to return an instance of the proxy table.
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    42 	{
       
    43 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    44 	return ImplementationTable;
       
    45 	}
       
    46 	
       
    47 //  End of File