usbmgmt/usbmgr/device/classdrivers/acm/classcontroller/SRC/CUsbAcmClassImpCollection.cpp
changeset 0 c9bc50fca66e
child 29 59aa7d6e3e0f
equal deleted inserted replaced
-1:000000000000 0:c9bc50fca66e
       
     1 /*
       
     2 * Copyright (c) 1997-2009 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 * Defines the implementation collection for the ACM class controller.
       
    16 *
       
    17 */
       
    18 
       
    19 /**
       
    20  @file
       
    21 */
       
    22 
       
    23 #include <e32base.h>
       
    24 #include <e32std.h>
       
    25 #include <ecom/ecom.h>
       
    26 #include <ecom/implementationproxy.h>
       
    27 #include "CUsbACMClassController.h"
       
    28 
       
    29 // Define the private interface UIDs
       
    30 const TImplementationProxy UsbCCImplementationTable[] =
       
    31     {
       
    32 	IMPLEMENTATION_PROXY_ENTRY(0x101fbf22, CUsbACMClassController::NewL),
       
    33     };
       
    34 
       
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    36     {
       
    37     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
       
    38 
       
    39     return UsbCCImplementationTable;
       
    40     }
       
    41