usbmgmt/usbmgr/device/classdrivers/whcm/classcontroller/SRC/CUsbWHCMClassImpCollection.cpp
branchRCL_3
changeset 16 012cc2ee6408
parent 15 f92a4f87e424
equal deleted inserted replaced
15:f92a4f87e424 16:012cc2ee6408
     1 /*
     1 /*
     2 * Copyright (c) 1997-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    23 #include <e32base.h>
    23 #include <e32base.h>
    24 #include <e32std.h>
    24 #include <e32std.h>
    25 #include <ecom/ecom.h>
    25 #include <ecom/ecom.h>
    26 #include <ecom/implementationproxy.h>
    26 #include <ecom/implementationproxy.h>
    27 #include "CUsbWHCMClassController.h"
    27 #include "CUsbWHCMClassController.h"
    28 #include "OstTraceDefinitions.h"
       
    29 #ifdef OST_TRACE_COMPILER_IN_USE
       
    30 #include "CUsbWHCMClassImpCollectionTraces.h"
       
    31 #endif
       
    32 
    28 
    33 // Define the private interface UIDs
    29 // Define the private interface UIDs
    34 const TImplementationProxy UsbCCImplementationTable[] =
    30 const TImplementationProxy UsbCCImplementationTable[] =
    35     {
    31     {
    36 	IMPLEMENTATION_PROXY_ENTRY(0x101fbf24, CUsbWHCMClassController::NewL),
    32 	IMPLEMENTATION_PROXY_ENTRY(0x101fbf24, CUsbWHCMClassController::NewL),
    37     };
    33     };
    38 
    34 
    39 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    40     {
    36     {
    41 	OstTraceFunctionEntry0( CBUSWHCMCLASSIMPCOLLECTION_IMPLEMENTATUIONGROUPPROXY_ENTRY );
       
    42     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
    37     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
    43     OstTraceFunctionEntry0( CBUSWHCMCLASSIMPCOLLECTION_IMPLEMENTATUIONGROUPPROXY_EXIT );
    38 
    44     return UsbCCImplementationTable;
    39     return UsbCCImplementationTable;
    45     }
    40     }
    46 
    41