os/graphics/windowing/windowserver/test/t_integ/inc/t_inidata.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/t_integ/inc/t_inidata.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,64 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @test
    1.22 + @internalComponent
    1.23 +*/
    1.24 +
    1.25 +#ifndef __T_INI_DATA_H__
    1.26 +#define __T_INI_DATA_H__
    1.27 +
    1.28 +#include <e32base.h>
    1.29 +
    1.30 +/**
    1.31 + * Macro to read a configuration value from an ini file.
    1.32 + * @see CTIniData::ReadIniL
    1.33 + */
    1.34 +
    1.35 +#define READ_STR(A, B, C)  {\
    1.36 +                           C = CTIniData::ReadStrL( TPtrC((const TText *)L ## #A) ,B);\
    1.37 +                           }
    1.38 +
    1.39 +#define READ_INT(A, B, C)  {\
    1.40 +                           C = CTIniData::ReadIntL( TPtrC((const TText *)L ## #A) ,B);\
    1.41 +                           }
    1.42 +
    1.43 +class CTIniData
    1.44 +	{
    1.45 +public:
    1.46 +	/**
    1.47 +	* Read ini value
    1.48 +	*
    1.49 +	* @param	aIniParam The name of the parameter to be read in
    1.50 +	* @param	aConfigFile The name of the configuration file (including path)
    1.51 +	* @return	HBufC* The value returned
    1.52 +	* @leave	System wide error code.
    1.53 +	*/
    1.54 +	IMPORT_C static HBufC* ReadStrL(const TPtrC& aIniParam, const TDesC& aConfigFile);
    1.55 +
    1.56 +	/**
    1.57 +	* Read ini value
    1.58 +	*
    1.59 +	* @param	aIniParam The name of the parameter to be read in
    1.60 +	* @param	aConfigFile The name of the configuration file (including path)
    1.61 +	* @return	TInt The value returned
    1.62 +	* @leave	System wide error code.
    1.63 +	*/
    1.64 +	IMPORT_C static TInt   ReadIntL(const TPtrC& aIniParam, const TDesC& aConfigFile);
    1.65 +	};
    1.66 +
    1.67 +#endif // __T_INI_DATA_H__