homescreensrv_plat/sapi_actionhandler/actionhandlerplugins/src/proxy.cpp
changeset 73 4bc7b118b3df
parent 66 32469d7d46ff
child 80 397d00875918
child 81 5ef31a21fdd5
equal deleted inserted replaced
66:32469d7d46ff 73:4bc7b118b3df
     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:  Action Handler Plugins' Implementation Proxy
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 #include "ahpapplauncher.h"
       
    22 #include "ahtelkeyhandler.h"
       
    23 #include "ahhelplauncher.h"
       
    24 
       
    25 // Map the interface UIDs to implementation factory functions
       
    26 const TImplementationProxy ImplementationTable[] =
       
    27     {
       
    28     IMPLEMENTATION_PROXY_ENTRY( 0x10282E5F, CAHAppLauncher::NewL ), 
       
    29     IMPLEMENTATION_PROXY_ENTRY( 0x10282E61, CAHTelKeyHandler::NewL ),
       
    30     IMPLEMENTATION_PROXY_ENTRY( 0x2001B285, CAHHelpLauncher::NewL ),
       
    31 };
       
    32 
       
    33 // Exported proxy for instantiation method resolution
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    35         TInt& aTableCount )
       
    36     {
       
    37     aTableCount =
       
    38     sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    39 
       
    40     return ImplementationTable;
       
    41     }
       
    42 
       
    43 // end of file