predictivesearch/PcsAlgorithm/Algorithm2/src/proxy.cpp
branchRCL_3
changeset 20 f4a778e096c2
parent 0 e686773b3f54
equal deleted inserted replaced
19:5b6f26637ad3 20:f4a778e096c2
       
     1 /*
       
     2 * Copyright (c) 2007 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 Plugin proxy details
       
    15 *
       
    16 */
       
    17 
       
    18 // INCLUDES
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 #include "CPcsAlgorithm2.h"
       
    22 
       
    23 // Provides a key value pair table, this is used to identify
       
    24 // the correct construction function for the requested interface.
       
    25 const TImplementationProxy ImplementationTable[] =
       
    26 {
       
    27 	    IMPLEMENTATION_PROXY_ENTRY(0x2000B5BF, CPcsAlgorithm2::NewL )
       
    28 };
       
    29     
       
    30 // Function used to return an instance of the proxy table.
       
    31 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    32 {
       
    33 	    aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    34 	    return ImplementationTable;
       
    35 }
       
    36 
       
    37 // End of file
       
    38