usbmgmt/usbmgr/device/classdrivers/acm/classcontroller/SRC/CUsbAcmClassImpCollection.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 "CUsbACMClassController.h"
    27 #include "CUsbACMClassController.h"
    28 #include "OstTraceDefinitions.h"
       
    29 #ifdef OST_TRACE_COMPILER_IN_USE
       
    30 #include "CUsbAcmClassImpCollectionTraces.h"
       
    31 #endif
       
    32 
       
    33 
    28 
    34 // Define the private interface UIDs
    29 // Define the private interface UIDs
    35 const TImplementationProxy UsbCCImplementationTable[] =
    30 const TImplementationProxy UsbCCImplementationTable[] =
    36     {
    31     {
    37 	IMPLEMENTATION_PROXY_ENTRY(0x101fbf22, CUsbACMClassController::NewL),
    32 	IMPLEMENTATION_PROXY_ENTRY(0x101fbf22, CUsbACMClassController::NewL),
    38     };
    33     };
    39 
    34 
    40 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    41     {
    36     {
    42 	OstTraceFunctionEntry0( USBACMCLASSIMPCONTROLLER_IMPLEMENTATIONGROUPPROXY_ENTRY );
       
    43     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
    37     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
    44     OstTraceFunctionExit0( USBACMCLASSIMPCONTROLLER_IMPLEMENTATIONGROUPPROXY_EXIT );
    38 
    45     return UsbCCImplementationTable;
    39     return UsbCCImplementationTable;
    46     }
    40     }
    47 
    41