os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/tcancel.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-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 the License "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 *
    16 */
    17 
    18 
    19 
    20 
    21 /**
    22  @file
    23 */
    24 
    25 #ifndef __TCANCEL_H__
    26 #define __TCANCEL_H__
    27 
    28 #include "t_testaction.h"
    29 
    30 class CCancelStart : public CTestAction
    31 	{
    32 public:
    33 	static CCancelStart* NewL(CConsoleBase& aConsole, Output& aOut,
    34 		const TTestActionSpec& aTestActionSpec);
    35 	static CCancelStart* NewLC(CConsoleBase& aConsole, Output& aOut, 
    36 		const TTestActionSpec& aTestActionSpec);
    37 	~CCancelStart();
    38 	virtual void PerformAction(TRequestStatus& aStatus);
    39 
    40 private:
    41 	CCancelStart(CConsoleBase& aConsole, Output& aOut);
    42 	void ConstructL(const TTestActionSpec& aTestActionSpec);
    43 	void DoReportAction();
    44 	void DoCheckResult(TInt aError);
    45 	};
    46 
    47 class CCancelStop : public CTestAction
    48 	{
    49 public:
    50 	static CCancelStop* NewL(CConsoleBase& aConsole, Output& aOut,
    51 		const TTestActionSpec& aTestActionSpec);
    52 	static CCancelStop* NewLC(CConsoleBase& aConsole, Output& aOut,
    53 		const TTestActionSpec& aTestActionSpecl);
    54 	~CCancelStop();
    55 	virtual void PerformAction(TRequestStatus& aStatus);
    56 
    57 private:
    58 	CCancelStop(CConsoleBase& aConsole, Output& aOut);
    59 	void ConstructL(const TTestActionSpec& aTestActionSpec);
    60 	void DoReportAction();
    61 	void DoCheckResult(TInt aError);
    62 	};
    63 
    64 #endif
    65