os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_message.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 __TMESSAGE_H__
    26 #define __TMESSAGE_H__
    27 
    28 #include "t_testaction.h"
    29 
    30 class TTestActionSpec;
    31 
    32 class CTestActionMessage : public CTestAction
    33 	{
    34 public:
    35 	static CTestActionMessage* NewL(CConsoleBase& aConsole, Output& aOut, 
    36 		const TTestActionSpec& aTestActionSpec);
    37 	static CTestActionMessage* NewLC(CConsoleBase& aConsole, Output& aOut, 
    38 		const TTestActionSpec& aTestActionSpec);
    39 	~CTestActionMessage();
    40 	virtual void PerformCancel() {};
    41 	virtual void DoPerformPrerequisite(TRequestStatus& aStatus);
    42 	virtual void PerformAction(TRequestStatus& aStatus);
    43 	virtual void DoPerformPostrequisite(TRequestStatus& aStatus);
    44 	virtual void PerformMessage();
    45 	virtual void Reset();
    46 
    47 private:
    48 	CTestActionMessage(CConsoleBase& aConsole, Output& aOut);
    49 	void ConstructL(const TTestActionSpec& aTestActionSpec);
    50 	void DoReportAction();
    51 	void DoCheckResult(TInt aError);
    52 
    53 private:
    54 	HBufC8* iMessage;
    55 	};
    56 
    57 #endif
    58