bluetoothengine/btctrldcmoadapter/src/btctrldcmoadapterproxy.cpp
changeset 0 f63038272f30
equal deleted inserted replaced
-1:000000000000 0:f63038272f30
       
     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 <ecom/implementationproxy.h>
       
    22 
       
    23 #include "btctrldcmoadapter.h"
       
    24 
       
    25 // Map the interface UIDs to implementation factory functions
       
    26 const TImplementationProxy ImplementationTable[] = 
       
    27 	{
       
    28 	IMPLEMENTATION_PROXY_ENTRY(0x20028778, CBluetoothCtrlDcmoAdapter::NewL),
       
    29 	};
       
    30 
       
    31 // Exported proxy for instantiation method resolution
       
    32 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    33 	{
       
    34 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    35 
       
    36 	return ImplementationTable;
       
    37 	}
       
    38