usbclasses/usbmscpersonality/src/UsbActiveMscHandlerImp.cpp
changeset 35 9d8b04ca6939
parent 0 1e05558e2206
equal deleted inserted replaced
34:7858bc6ead78 35:9d8b04ca6939
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Implementation proxy
       
    15 *
       
    16 */
       
    17 
       
    18 #include <e32base.h>
       
    19 #include <e32std.h>
       
    20 #include <ecom/ecom.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 #include "CUsbActiveMscHandlerMdrv.h"
       
    23 
       
    24 /**
       
    25  * Define the private interface UIDs
       
    26  */
       
    27 const TImplementationProxy UsbPersonalityImplementationTable[] =
       
    28     {
       
    29 	IMPLEMENTATION_PROXY_ENTRY(0x1020DF7B, CUsbActiveMscHandler::NewL),
       
    30     };
       
    31 
       
    32 /**
       
    33  * Return number of implementation proxies
       
    34  */
       
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    36     {
       
    37     aTableCount = sizeof(UsbPersonalityImplementationTable) / sizeof(TImplementationProxy);
       
    38 
       
    39     return UsbPersonalityImplementationTable;
       
    40     }