searchfw/plugins/notessearchplugin/src/proxy.cpp
changeset 89 b57382753122
parent 0 f979ecb2b13e
equal deleted inserted replaced
83:5aadd1120515 89:b57382753122
       
     1 /*
       
     2 * Copyright (c) 2006 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 search interface entrance.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // SYSTEM INCLUDE FILES
       
    21 #include <e32std.h>
       
    22 #include <ecom/implementationproxy.h>
       
    23 
       
    24 // USER   INCLUDE FILES
       
    25 #include "notessearchplugin.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 
       
    32 const  TImplementationProxy ImplementationTable[] = 
       
    33 	{
       
    34 	  #ifdef __EABI__ 
       
    35         IMPLEMENTATION_PROXY_ENTRY(0x102823FA,CNotesSearchPlugin::NewL )  // ---for armv5
       
    36       #else
       
    37         { { 0x102823FA },  CNotesSearchPlugin::NewL}                                       //---for wins
       
    38       #endif  
       
    39 		
       
    40     //  IMPLEMENTATION_PROXY_ENTRY( 0x10200213,CNotesSearchPlugin::NewL )
       
    41 	};
       
    42 
       
    43 
       
    44 // Function used to return an instance of the proxy table.
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    46 	{
       
    47 	aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    48 	return ImplementationTable;
       
    49 	}
       
    50 
       
    51 //end of file
       
    52