hsappkeyhandler/src/hsappkeypluginproxy.cpp
changeset 66 32469d7d46ff
child 116 305818acdca4
equal deleted inserted replaced
61:8e5041d13c84 66:32469d7d46ff
       
     1 /*
       
     2 * Copyright (c) 2007-2009 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 implementation table
       
    15  *
       
    16 */
       
    17 
       
    18 #include <e32base.h>
       
    19 #include <e32std.h>
       
    20 #include <ecom/ecom.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 #include "hsappkeyhandleruids.hrh"
       
    23 #include "hsappkeyplugin.h"
       
    24 
       
    25 const TImplementationProxy AppkeyPluginImplementationTable[] =
       
    26     {
       
    27 	IMPLEMENTATION_PROXY_ENTRY(KUIDAPPKEYPLUGINIMPL1, CHsAppKeyPlugin::NewL)
       
    28     };
       
    29 
       
    30 // ---------------------------------------------------------------------------
       
    31 // 
       
    32 // ---------------------------------------------------------------------------
       
    33 //
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    35     {
       
    36     aTableCount = sizeof(AppkeyPluginImplementationTable) / sizeof(TImplementationProxy);
       
    37 
       
    38     return AppkeyPluginImplementationTable;
       
    39     }