os/graphics/windowing/windowserver/test/PARSEINIDATA.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/test/PARSEINIDATA.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,72 @@
     1.4 +// Copyright (c) 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 +// Class definition to parse the ini file
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/**
    1.22 +@file
    1.23 +@test
    1.24 +@internalComponent
    1.25 +*/
    1.26 +
    1.27 +#ifndef __CINIDATA_H__
    1.28 +#define __CINIDATA_H__
    1.29 +
    1.30 +#include <e32base.h>
    1.31 +
    1.32 +class CIniData : public CBase 
    1.33 +/**
    1.34 + *
    1.35 + * @publishedPartner
    1.36 + * @test
    1.37 + *
    1.38 + * Defines the interface to acess to ini data file
    1.39 + *
    1.40 + * The basic functions, FindVar(), SetValue(), AddValue() and WriteToFileL()
    1.41 + * Compulsory to call WriteToFileL() after calling any SetValue() or AddValue()
    1.42 + */
    1.43 +	{
    1.44 +public:
    1.45 +	// Constructor, pass in name of ini file to open
    1.46 +	// Default search path is 'c:\system\data' on target filesystem
    1.47 +	// ie. 'NewL(_L("c:\\system\\data\\ttools.ini"))' is equivalent
    1.48 +	// to 'NewL(_L("ttools.ini"))'
    1.49 +	static CIniData* NewL(const TDesC& aName, char aDelimiter);
    1.50 +	virtual ~CIniData();
    1.51 +
    1.52 +	TBool FindVar(const TDesC& aKeyName,	// Key to look for
    1.53 +				  TPtrC& aResult);			// Buffer to store value
    1.54 +
    1.55 +	TBool FindVar(const TDesC& aKeyName, 	// Key to look for
    1.56 +	    		  TInt& aResult);			// Int ref to store result
    1.57 +
    1.58 +	TBool FindVar(const TDesC& aSection,	// Section to look under
    1.59 +			      const TDesC& aKeyName,	// Key to look for
    1.60 +				  TPtrC& aResult);			// Buffer to store result
    1.61 +
    1.62 +	TBool FindVar(const TDesC& aSection,	// Section to look under
    1.63 +				  const TDesC& aKeyName,	// Key to look for
    1.64 +				  TInt& aResult);			// Int ref to store result
    1.65 +protected:
    1.66 +	CIniData();
    1.67 +	void ConstructL(const TDesC& aName, char aDelimiter);
    1.68 +private:
    1.69 +	HBufC* iName;
    1.70 +	HBufC* iToken;
    1.71 +	TPtr iPtr;
    1.72 +	char iDelimiter;
    1.73 +	};
    1.74 +
    1.75 +#endif