Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 #ifndef __TMESSAGE_H__
26 #define __TMESSAGE_H__
28 #include "t_testaction.h"
30 class TTestActionSpec;
32 class CTestActionMessage : public CTestAction
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();
48 CTestActionMessage(CConsoleBase& aConsole, Output& aOut);
49 void ConstructL(const TTestActionSpec& aTestActionSpec);
50 void DoReportAction();
51 void DoCheckResult(TInt aError);