usbmgmt/usbmgrtest/T_usb/inc/UsbStep.h
changeset 0 c9bc50fca66e
equal deleted inserted replaced
-1:000000000000 0:c9bc50fca66e
       
     1 /*
       
     2 * Copyright (c) 2002-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 * This contains CTestStepUsb which is the base class for all 
       
    16 * the Usb test step cases
       
    17 *
       
    18 */
       
    19 
       
    20 #ifndef __USBSTEP_H__
       
    21 #define __USBSTEP_H__
       
    22 
       
    23 #include <networking/teststep.h>
       
    24 #include <usbman.h>
       
    25 
       
    26 class CTestSuite;
       
    27 class CTestSuiteUsb;
       
    28 NONSHARABLE_CLASS(CTestStepUsb) : public CTestStep
       
    29 {
       
    30 public:
       
    31 	CTestStepUsb();
       
    32 	virtual ~CTestStepUsb();
       
    33 
       
    34 	// pointer to suite which owns this test 
       
    35 	CTestSuiteUsb* iUsbSuite;
       
    36 
       
    37 protected:
       
    38 	void OpenCommServerL();
       
    39 	TInt OpenLdd();
       
    40 };
       
    41 
       
    42 
       
    43 
       
    44 #endif /* __USBSTEP_H__ */