contentstorage/casrv/carunningappmonitor/src/proxy.cpp
changeset 116 305818acdca4
parent 112 dbfb5e38438b
child 119 50e220be30d1
equal deleted inserted replaced
112:dbfb5e38438b 116:305818acdca4
     1 /*
       
     2 * Copyright (c) 2009 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: proxy.cpp
       
    15 *
       
    16 */
       
    17 #include <e32std.h>
       
    18 #include <ecom/implementationproxy.h>
       
    19 #include "carunningapphandler.h"
       
    20 
       
    21 // Provides a key value pair table, this is used to identify
       
    22 // the correct construction function for the requested interface.
       
    23 const TImplementationProxy ImplementationTable[] =
       
    24     {
       
    25     IMPLEMENTATION_PROXY_ENTRY( 0x200267B5, CCaRunningAppHandler::NewL )
       
    26     };
       
    27 
       
    28 // Function used to return an instance of the proxy table.
       
    29 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    30         TInt& aTableCount )
       
    31     {
       
    32     aTableCount = sizeof( ImplementationTable )
       
    33             / sizeof(TImplementationProxy);
       
    34     return ImplementationTable;
       
    35     }