usbclasses/usbobexclasscontroller/src/CUsbObexClassImpCollection.cpp
changeset 35 9d8b04ca6939
parent 0 1e05558e2206
equal deleted inserted replaced
34:7858bc6ead78 35:9d8b04ca6939
       
     1 /*
       
     2 * Copyright (c) 2002-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:  Defines the implementation collection for the USB Obex class controller.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32base.h>
       
    20 #include <e32std.h>
       
    21 #include <ecom/ecom.h>
       
    22 #include <ecom/implementationproxy.h>
       
    23 #include "CUsbObexClassController.h"
       
    24 
       
    25 // Define the private interface UIDs
       
    26 const TImplementationProxy UsbCCImplementationTable[] =
       
    27     {
       
    28     IMPLEMENTATION_PROXY_ENTRY(0x10281F2A, CUsbObexClassController::NewL),
       
    29     };
       
    30 
       
    31 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    32     {
       
    33     aTableCount = sizeof(UsbCCImplementationTable) / sizeof(TImplementationProxy);
       
    34 
       
    35     return UsbCCImplementationTable;
       
    36     }