usbmgmt/usbmgr/device/classdrivers/ms/classcontroller/src/CUsbMsClassImpCollection.cpp
branchRCL_3
changeset 15 f92a4f87e424
parent 0 c9bc50fca66e
child 16 012cc2ee6408
equal deleted inserted replaced
14:d3e8e7d462dd 15:f92a4f87e424
     1 /*
     1 /*
     2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 * Copyright (c) 2004-2010 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".
    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 "CUsbMsClassController.h"
    27 #include "CUsbMsClassController.h"
    28 
    28 
       
    29 #include "OstTraceDefinitions.h"
       
    30 #ifdef OST_TRACE_COMPILER_IN_USE
       
    31 #include "CUsbMsClassImpCollectionTraces.h"
       
    32 #endif
       
    33 
       
    34 
    29 // Define the private interface UIDs
    35 // Define the private interface UIDs
    30 const TImplementationProxy UsbCCImplementationTable[] =
    36 const TImplementationProxy UsbCCImplementationTable[] =
    31     {
    37     {
    32 	IMPLEMENTATION_PROXY_ENTRY(0x10204bbc, CUsbMsClassController::NewL),
    38 	IMPLEMENTATION_PROXY_ENTRY(0x10204bbc, CUsbMsClassController::NewL),
    33     };
    39     };
    34 
    40 
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    36     {
    42     {
       
    43 	OstTraceFunctionEntry0( CUSBMSCLASSIMPCOLLECTION_IMPLEMENTATIONGROUPPROXY_ENTRY );
    37     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
    44     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
    38 
    45     OstTraceFunctionExit0( CUSBMSCLASSIMPCOLLECTION_IMPLEMENTATIONGROUPPROXY_EXIT );
    39     return UsbCCImplementationTable;
    46     return UsbCCImplementationTable;
    40     }
    47     }