omadcmoadapters/wlanctrl/src/wlanctrldcmoadapterproxy.cpp
changeset 42 aa33c2cb9a50
equal deleted inserted replaced
41:c742e1129640 42:aa33c2cb9a50
       
     1 /*
       
     2  * ==============================================================================
       
     3  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     4  * All rights reserved.
       
     5  * This component and the accompanying materials are made available
       
     6  * under the terms of "Eclipse Public License v1.0"
       
     7  * which accompanies this distribution, and is available
       
     8  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9  *
       
    10  * Initial Contributors:
       
    11  * Nokia Corporation - initial contribution.
       
    12  *
       
    13  * Contributors:
       
    14  * 
       
    15  * Description:
       
    16  * 
       
    17  * ==============================================================================
       
    18  */
       
    19 
       
    20 #include <e32std.h>
       
    21 #include <implementationproxy.h>
       
    22 
       
    23 #include "wlanctrldcmoadapter.h"
       
    24 
       
    25 #ifndef IMPLEMENTATION_PROXY_ENTRY
       
    26 #define IMPLEMENTATION_PROXY_ENTRY( aUid, aFuncPtr )  {{aUid},(aFuncPtr)}
       
    27 #endif
       
    28 
       
    29 
       
    30 // Map the interface UIDs to implementation factory functions
       
    31 const TImplementationProxy ImplementationTable[] = 
       
    32 	{
       
    33 		IMPLEMENTATION_PROXY_ENTRY(0x20022FB4, CWLanCtrlDCMOAdapter::NewL),
       
    34 	};
       
    35 
       
    36 // Exported proxy for instantiation method resolution
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    38 	{
       
    39 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    40 
       
    41 	return ImplementationTable;
       
    42 	}
       
    43