bluetoothengine/headsetsimulator/profiles/hspprofile/src/proxy.cpp
branchheadsetsimulator
changeset 60 90dbfc0435e3
equal deleted inserted replaced
59:02103bf20ee5 60:90dbfc0435e3
       
     1 /* 
       
     2  *
       
     3  * Copyright (c) <2010> Comarch S.A. and/or its subsidiary(-ies).
       
     4  * All rights reserved.
       
     5  * This component and the accompanying materials are made available
       
     6  * under the terms of the License "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  * Original Contributors:
       
    11  * Comarch S.A. - original contribution.
       
    12  *
       
    13  * Contributors:
       
    14  *
       
    15  * Description:
       
    16  *
       
    17  */
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <Implementationproxy.h>
       
    21 
       
    22 #include "hspprofileplugin.h" 
       
    23 #include "hspcod.h"
       
    24 #include "hspsdp.h"
       
    25 
       
    26 const TImplementationProxy ImplementationTable[] =
       
    27     {
       
    28     IMPLEMENTATION_PROXY_ENTRY(0xE0009DC4, CHsHSPSDP::NewL),
       
    29 IMPLEMENTATION_PROXY_ENTRY(0xE0009DC5, CHsHSPCoD::NewL),
       
    30 IMPLEMENTATION_PROXY_ENTRY(0xE0009DC7, CHsHSPProfile::NewL)
       
    31     };
       
    32 
       
    33 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    34         TInt& aTableCount )
       
    35     {
       
    36     aTableCount = sizeof( ImplementationTable ) / sizeof(TImplementationProxy);
       
    37     return ImplementationTable;
       
    38     }
       
    39 ;