cmmanager/cmmgr/Plugins/cmpluginwlan/src/cmpluginwlanproxy.cpp
branchRCL_3
changeset 58 83ca720e2b9a
parent 0 5a93021fdf25
equal deleted inserted replaced
57:05bc53fe583b 58:83ca720e2b9a
       
     1 /*
       
     2 * Copyright (c) 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 of WLan Plugin proxy table
       
    15 *
       
    16 */
       
    17 
       
    18 #include "cmpluginwlan.h"
       
    19 #include <e32std.h>
       
    20 #include <ecom/implementationproxy.h>
       
    21 
       
    22 // Exported proxy for instantiation method resolution
       
    23 // Define the interface UIDs
       
    24 const TImplementationProxy ImplementationTable[] = 
       
    25 	{
       
    26 	IMPLEMENTATION_PROXY_ENTRY( KUidWlanBearerType, CCmPluginWlan::NewL )
       
    27 	};
       
    28 
       
    29 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    30                                                         TInt& aTableCount )
       
    31 	{
       
    32 	aTableCount = sizeof( ImplementationTable ) / 
       
    33 	                                        sizeof( TImplementationProxy );
       
    34 
       
    35 	return ImplementationTable;
       
    36 	}