localconnectivityservice/lcstylustap/src/lcstylustapproxy.cpp
branchRCL_3
changeset 40 52a167391590
parent 0 c3e98f10fcf4
equal deleted inserted replaced
39:4096754ee773 40:52a167391590
       
     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 proxy table for this plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <implementationproxy.h>
       
    21 #include <AknIndicatorPluginImplUIDs.hrh>
       
    22 #include "lcstylustap.h"
       
    23 
       
    24 
       
    25 
       
    26 // ======== LOCAL FUNCTIONS ========
       
    27 
       
    28 // ---------------------------------------------------------------------------
       
    29 // Definition of ECOM interface UID
       
    30 // ---------------------------------------------------------------------------
       
    31 //
       
    32 const TImplementationProxy ImplementationTable[] =
       
    33     {
       
    34     IMPLEMENTATION_PROXY_ENTRY( KImplUIDBTIndicatorsPlugin, CLcStylusTap::NewL ),
       
    35     IMPLEMENTATION_PROXY_ENTRY( KImplUIDUSBIndicatorsPlugin, CLcStylusTap::NewL ),
       
    36     IMPLEMENTATION_PROXY_ENTRY( KImplUIDIRIndicatorsPlugin, CLcStylusTap::NewL ),
       
    37     IMPLEMENTATION_PROXY_ENTRY( 0x20026FC4, CLcStylusTap::NewL )
       
    38     };
       
    39 
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // ECOM factory method
       
    43 // ---------------------------------------------------------------------------
       
    44 //
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    46     {    
       
    47     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    48     return ImplementationTable;
       
    49     }