os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/ttesthandlersettings.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/ttesthandlersettings.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,76 @@
     1.4 +/*
     1.5 +* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +#ifndef __TESTHANDLERSETTINGS_H__
    1.23 +#define __TESTHANDLERSETTINGS_H__
    1.24 +
    1.25 +#include <e32base.h>
    1.26 +
    1.27 +/**
    1.28 + * This class stores the various settings that define the behaviour of
    1.29 + * the test handler.
    1.30 + *
    1.31 + * this is a C-class, but it doesn't derived from CBase!
    1.32 + */
    1.33 +class CTestHandlerSettings
    1.34 +	{
    1.35 +public:
    1.36 +	/**
    1.37 +	 * This function creates a new CTestHandlerSettings object.
    1.38 +	 */
    1.39 +	IMPORT_C static CTestHandlerSettings* NewLC();
    1.40 +	/**
    1.41 +	 * This function creates a new copy of the argument.
    1.42 +	 */
    1.43 +	IMPORT_C static CTestHandlerSettings* NewL(const CTestHandlerSettings& aOther);
    1.44 +	/**
    1.45 +	 * The destructor.
    1.46 +	 */
    1.47 +	IMPORT_C ~CTestHandlerSettings();
    1.48 +
    1.49 +private:
    1.50 +	/**
    1.51 +	 * The default constructor produces settings adequate for running automated tests.
    1.52 +	 * The settings are all set to false.
    1.53 +	 */
    1.54 +	CTestHandlerSettings();
    1.55 +	/**
    1.56 +	 * The second-phase constructor.
    1.57 +	 */
    1.58 +	void ConstructL();
    1.59 +	
    1.60 +public:
    1.61 +	/**
    1.62 +	 * If this is set to ETrue, then at the end of the tests, the handler will not
    1.63 +	 * quit immediately : it will wait until the user has pressed a key to quit.
    1.64 +	 * This is to allow the user to read the contents of the screen.
    1.65 +	 */
    1.66 +	TBool iWaitForKeyPressAtEnd;
    1.67 +
    1.68 +	/**
    1.69 +	 * Used to hold the bitflag values for the switches read in  
    1.70 +	 * from the commandline
    1.71 +	 */
    1.72 +	TBool iOOM;
    1.73 +	TBool iCancel;
    1.74 +	TBool iSkip;
    1.75 +	TBool iExhaust;
    1.76 +	TBool iInt;
    1.77 +	};
    1.78 +
    1.79 +#endif