usbmgmt/usbmgr/device/classdrivers/ncm/classcontroller/src/ncmclassimpcollection.cpp
branchRCL_3
changeset 15 f92a4f87e424
equal deleted inserted replaced
14:d3e8e7d462dd 15:f92a4f87e424
       
     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: 
       
    15 *
       
    16 */
       
    17 
       
    18 /**
       
    19  * @file
       
    20  * @internalComponent
       
    21  */
       
    22 
       
    23 #include <e32base.h>
       
    24 #include <e32std.h>
       
    25 #include <ecom/ecom.h>
       
    26 #include <ecom/implementationproxy.h>
       
    27 #include "ncmclasscontroller.h"
       
    28 
       
    29 // Define the private interface UIDs
       
    30 const TImplementationProxy UsbCCImplementationTable[] =
       
    31     {
       
    32 #ifdef OVERDUMMY_NCMCC
       
    33     IMPLEMENTATION_PROXY_ENTRY(0x2002EA9F, CNcmClassController::NewL),    
       
    34 #else
       
    35 	IMPLEMENTATION_PROXY_ENTRY(0x2002c305, CNcmClassController::NewL),
       
    36 #endif // OVERDUMMY_NCMCC
       
    37     };
       
    38 
       
    39 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    40     {
       
    41     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
       
    42 
       
    43     return UsbCCImplementationTable;
       
    44     }