usbengines/usblocodplugin/inc/usblcdplugin.h
changeset 34 7858bc6ead78
parent 31 dfdd8240f7c8
child 35 9d8b04ca6939
equal deleted inserted replaced
31:dfdd8240f7c8 34:7858bc6ead78
     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:  Definition USB bearer implementation of EComm Interface. 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef USBLCDPLUGIN_H
       
    20 #define USBLCDPLUGIN_H
       
    21 
       
    22 #include <e32property.h>
       
    23 #include <locodbearerplugin.h>
       
    24 #include "usblcdactive.h"
       
    25 #include <usb/usblogger.h>
       
    26 
       
    27 /**
       
    28  *  Class of EComm interface implementation
       
    29  */
       
    30 NONSHARABLE_CLASS(CUsbLcdPlugin) : public CLocodBearerPlugin
       
    31     {
       
    32 
       
    33 public:
       
    34 
       
    35     static CUsbLcdPlugin* NewL(TLocodBearerPluginParams& aParams);
       
    36     ~CUsbLcdPlugin(); 
       
    37    
       
    38 private:
       
    39 
       
    40     CUsbLcdPlugin(TLocodBearerPluginParams& aParams);
       
    41     void ConstructL();
       
    42 
       
    43 private: // data
       
    44     
       
    45     /**
       
    46      * Array of Active Object, own.
       
    47      */
       
    48     CUsbLcdActive*  iUsbLcdActive;
       
    49        
       
    50     };
       
    51 
       
    52 
       
    53 #endif // USBLCDPLUGIN_H