cbsatplugin/atmisccmdplugin/src/main.cpp
branchRCL_3
changeset 16 b23265fb36da
equal deleted inserted replaced
14:f7fbeaeb166a 16:b23265fb36da
       
     1 /*
       
     2  * Copyright (c) 2010 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  * Initial Contributors:
       
     9  * Nokia Corporation - initial contribution.
       
    10  *
       
    11  * Contributors:
       
    12  * Description :
       
    13  *
       
    14  */
       
    15 
       
    16 #include <e32base.h>
       
    17 #include <ecom/implementationproxy.h>
       
    18 
       
    19 #include "atmisccmdpluginuids.hrh"
       
    20 #include "atmisccmdplugin.h"
       
    21 
       
    22 /*
       
    23  * Ecom plug-in implementation table
       
    24  */
       
    25 const TImplementationProxy ImplementationTable[] =
       
    26 	{
       
    27 	IMPLEMENTATION_PROXY_ENTRY(KUidATMiscCmdEcomImpl, CATMiscCmdPlugin::NewL)
       
    28 	};
       
    29 
       
    30 /*
       
    31  * Instance of implementation proxy
       
    32  * (exported)
       
    33  */
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    35 	{
       
    36 	aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    37 
       
    38 	return ImplementationTable;
       
    39 	}