idlefw/plugins/shortcutplugin/src/caiscutsettingsimplementationtable.cpp
branchRCL_3
changeset 8 d0529222e3f0
parent 4 1a2a00e78665
child 11 bd874ee5e5e2
equal deleted inserted replaced
4:1a2a00e78665 8:d0529222e3f0
     1 /*
       
     2 * Copyright (c) 2005-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:  Implementation table for shortcut settings plug-in
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 
       
    22 #include "caiscutsettings.h"
       
    23 #include <platform/mw/aiscutuids.hrh>
       
    24 
       
    25 /** Implementation table for shortcut settings plug-in */
       
    26 const TImplementationProxy KAiScutSettingsImplementationTable[] =
       
    27 {
       
    28     IMPLEMENTATION_PROXY_ENTRY(
       
    29         AI_UID_ECOM_IMPLEMENTATION_SETTINGS_SCUTPLUGIN, CAiScutSettings::NewL)
       
    30 };
       
    31 
       
    32 
       
    33 // ---------------------------------------------------------------------------
       
    34 // Gate/factory function.
       
    35 // ---------------------------------------------------------------------------
       
    36 //
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    38 {
       
    39     aTableCount =
       
    40         sizeof(KAiScutSettingsImplementationTable) /
       
    41         sizeof(TImplementationProxy);
       
    42     return KAiScutSettingsImplementationTable;
       
    43 }
       
    44 
       
    45 // End of File.