First public contribution.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32test/usb/t_usb_device/include/activestallnotifier.h
18 #ifndef __ACTIVESTALLNOTIFIER_H__
19 #define __ACTIVESTALLNOTIFIER_H__
22 class CActiveStallNotifier : public CActive
25 static CActiveStallNotifier* NewL(CConsoleBase* aConsole, RDEVCLIENT* aPort);
26 ~CActiveStallNotifier();
30 CActiveStallNotifier(CConsoleBase* aConsole, RDEVCLIENT* aPort);
32 virtual void DoCancel();
36 CConsoleBase* iConsole;
42 #endif // __ACTIVESTALLNOTIFIER_H__