bluetoothengine/btaudioman/src/proxy.cpp
changeset 0 f63038272f30
equal deleted inserted replaced
-1:000000000000 0:f63038272f30
       
     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 ECom framework
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include <e32std.h>
       
    21 #include <implementationproxy.h>
       
    22 #include "BTAccInfoMainService.h"
       
    23 #include "BTAccInfoCmdHandler.h"
       
    24 #include "btaudiomanplugin.h"
       
    25 
       
    26 // Map the interface implementation UIDs to implementation factory functions
       
    27 const TImplementationProxy ImplementationTable[] =
       
    28     {       
       
    29         { { 0x1020897C }, (TProxyNewLPtr) CBTAccInfoMainService::NewL },
       
    30         { { 0x1020897D }, (TProxyNewLPtr) CBTAccInfoCmdHandler::NewL },
       
    31         { { 0x1020897B }, (TProxyNewLPtr) CBtAudioManPlugin::NewL },
       
    32     };
       
    33 
       
    34 // LOCAL FUNCTION PROTOTYPES
       
    35 
       
    36 // FORWARD DECLARATIONS
       
    37 
       
    38 // ============================= LOCAL FUNCTIONS ===============================
       
    39 
       
    40 // ============================ MEMBER FUNCTIONS ===============================
       
    41 
       
    42 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    43 
       
    44 // Exported proxy for instantiation method resolution.
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    46     {
       
    47     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    48     return ImplementationTable;
       
    49     }
       
    50 
       
    51 //  End of File