voiceui/vccontrolpanelplugin/src/vccontrolpanelpluginimplementationtable.cpp
branchRCL_3
changeset 18 cad71a31b7fc
parent 17 8ce15fced3a6
child 19 e36f3802f733
equal deleted inserted replaced
17:8ce15fced3a6 18:cad71a31b7fc
     1 /*
       
     2 * Copyright (c) 2007 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 VCommand control panel plugin.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // User includes
       
    20 #include "vccontrolpanelplugin.h"
       
    21 #include "vccontrolpanelpluginuids.hrh"
       
    22 
       
    23 // System includes
       
    24 #include <e32std.h>
       
    25 #include <implementationproxy.h>
       
    26 
       
    27 
       
    28 // Constants
       
    29 const TImplementationProxy KVccontrolPanelPluginImplementationTable[] =
       
    30     {
       
    31     IMPLEMENTATION_PROXY_ENTRY( KImplUid,  CVcControlPanelPlugin::NewL )
       
    32     };
       
    33 
       
    34 
       
    35 // ---------------------------------------------------------------------------
       
    36 // ImplementationGroupProxy
       
    37 // Gate/factory function
       
    38 //
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    42     TInt& aTableCount )
       
    43     {
       
    44     aTableCount = sizeof( KVccontrolPanelPluginImplementationTable )
       
    45         / sizeof( TImplementationProxy );
       
    46     return KVccontrolPanelPluginImplementationTable;
       
    47     }