accessoryservices/autoaudioasy/src/autoaudioasyproxy.cpp
changeset 35 f7565e9c9ce8
equal deleted inserted replaced
29:e5a0aab53f3f 35:f7565e9c9ce8
       
     1 /*
       
     2 * Copyright (c) 2010 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:  Implementations for autoaudioasy
       
    15 *
       
    16 */
       
    17 
       
    18 #include <e32std.h>
       
    19 #include <ecom/implementationproxy.h>
       
    20 
       
    21 #include "cautoaudioasymainservicebase.h"
       
    22 
       
    23 // Map the interface implementation UIDs to implementation factory functions
       
    24 const TImplementationProxy ImplementationTable[] =
       
    25     {
       
    26     {{0x2002F9A4}, (TProxyNewLPtr) CAutoAudioAsyMainServiceBase::NewL}
       
    27     };
       
    28 
       
    29 //
       
    30 // ---------------------------------------------------------
       
    31 // TImplementationProxy* ImplementationGroupProxy( TInt&)
       
    32 // ---------------------------------------------------------
       
    33 //  
       
    34 // Exported proxy for instantiation method resolution.
       
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    36     {
       
    37     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    38     return ImplementationTable;
       
    39     }