phonebookui/Phonebook2/ccapplication/ccamycardplugin/src/ccappmycardpluginproxy.cpp
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2009-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:  Common ECom plugin proxy
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 
       
    22 #include "ccappmycardpluginfactory.h"
       
    23 #include "ccappmycardpluginuids.hrh"
       
    24 
       
    25 // ---------------------------------------------------------------------------
       
    26 // ImplementationTable
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 const TImplementationProxy ImplementationTable[] =
       
    30     {
       
    31     IMPLEMENTATION_PROXY_ENTRY( 
       
    32         KCCAMyCardPluginImplmentationUid, 
       
    33         CCCAppMycardPluginFactory::NewL )
       
    34     };
       
    35 
       
    36 // ---------------------------------------------------------------------------
       
    37 // ImplementationGroupProxy
       
    38 // ---------------------------------------------------------------------------
       
    39 //
       
    40 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    41     TInt& aTableCount)
       
    42     {
       
    43     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    44     return ImplementationTable;
       
    45     }