systemswstubs/hwrmhapticsstubplugin/src/proxy.cpp
changeset 5 6ac4a04c9b06
child 16 cee235f8aa57
equal deleted inserted replaced
4:ac37d08cf88d 5:6ac4a04c9b06
       
     1 /*
       
     2 * Copyright (c) 2008 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 the License "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:  Haptics adaptation stub plugin ECom implementation proxy definition file
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <ImplementationProxy.h>
       
    21 
       
    22 #include "hwrmhapticsstubplugin.h"
       
    23 
       
    24 /**
       
    25  * Mapping of the interface implementation UIDs to implementation factory
       
    26  * functions
       
    27  */
       
    28 const TImplementationProxy ImplementationTable[] =
       
    29     {
       
    30     IMPLEMENTATION_PROXY_ENTRY( 0x2001CB6E, CHWRMHapticsStubPlugin::NewL )
       
    31     };
       
    32 
       
    33 /**
       
    34  * Exported proxy for instantiation method resolution.
       
    35  */
       
    36 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    37         TInt& aTableCount )
       
    38     {
       
    39     aTableCount = 
       
    40         sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    41     return ImplementationTable;
       
    42     }