bluetoothengine/bthid/bthidkbdsettings/src/bthidpluginimplementationtable.cpp
branchRCL_3
changeset 22 613943a21004
parent 21 0ba996a9b75d
child 23 9386f31cc85b
equal deleted inserted replaced
21:0ba996a9b75d 22:613943a21004
     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: 
       
    15 *        ECOM proxy table for this plugin
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // System includes
       
    21 //
       
    22 #include <e32std.h>
       
    23 #include <ecom/implementationproxy.h>
       
    24 
       
    25 // User includes
       
    26 //
       
    27 #include "bthidsettingview.h"
       
    28 #include "hiduids.h"
       
    29 
       
    30 // Constants
       
    31 //
       
    32 const TImplementationProxy KBtHidPluginImplementationTable[] =
       
    33     {
       
    34         // UPDATE THIS - Uid for plugin implementation:
       
    35 
       
    36         //This impl is for BtuiPluginInterface.
       
    37         IMPLEMENTATION_PROXY_ENTRY( KBDSETTINGS_UIPLUGIN_IMP,	CBtHidSettingView::NewBtuiPluginL ),
       
    38     };
       
    39 
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // ImplementationGroupProxy
       
    43 // Gate/factory function
       
    44 //
       
    45 // ---------------------------------------------------------------------------
       
    46 //
       
    47 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    48     {
       
    49     aTableCount = sizeof(KBtHidPluginImplementationTable)
       
    50                   / sizeof(TImplementationProxy);
       
    51     return KBtHidPluginImplementationTable;
       
    52     }