os/graphics/windowing/windowserver/test/t_integ/inc/t_wservconfigdata.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19 */
    20 
    21 #ifndef __T_WSERV_CONFIG_DATA_H__
    22 #define __T_WSERV_CONFIG_DATA_H__
    23 
    24 #include <e32base.h>
    25 
    26 const TInt								KMaxWServConfigDataSize=256;
    27 typedef TBuf<KMaxWServConfigDataSize>	TWServConfigData;
    28 
    29 /**
    30  * Test Active Notification class
    31  *
    32  */
    33 class CT_WServConfigData
    34 	{
    35 public:
    36 	/**
    37 	* Constructor
    38 	*/
    39 	CT_WServConfigData();
    40 
    41 	/**
    42 	* Destructor
    43 	*/
    44 	virtual ~CT_WServConfigData();
    45 
    46 	/**
    47 	* Add a data entry to the config
    48 	*
    49 	* @param	aName name of the config entry
    50 	* @param	aData the data to add. 
    51 	* @leave	KErrAlreadyExists if the config entry aName already exists
    52 	*/
    53 	void		AddDataL(const TDesC& aName, const TDesC& aData);
    54 
    55 	/**
    56 	* Add a data entry to the config
    57 	*
    58 	* @param	aName name of the config entry to be replaced
    59 	* @param	aData the data to add. 
    60 	* @leave	KErrNotFound if the config entry aName is not found
    61 	*/
    62 	void		ReplaceData(const TDesC& aName, const TDesC& aData);
    63 
    64 	/**
    65 	* Delete a data entry from the config
    66 	*
    67 	* @param	aName name of the config entry
    68 	*
    69 	* @leave	KErrNotFound if the config entry aName is not found
    70 	*/
    71 	void		DeleteDataL(const TDesC& aName);
    72 
    73 	/**
    74 	* Get the list of data
    75 	*
    76 	* @param	aIndex of an index into the list of data
    77 	*
    78 	* @return	Pointer to list of data
    79 	*/
    80 	const TWServConfigData& GetData(const TInt aIndex) const;
    81 
    82 	/**
    83 	* Get the list of names
    84 	*
    85 	* @param	aIndex of an index into the list of names
    86 	*
    87 	* @return	Pointer to list of names
    88 	*/
    89 	const TWServConfigData& GetName(const TInt aIndex) const;
    90 
    91 
    92 	/**
    93 	* Return the number of entries
    94 	*
    95 	* @return   The number of entries stored in the config data.
    96 	* @leave	KErrGeneral
    97 	*/
    98 	TInt		NoOfEntriesL() const;
    99 
   100 	/**
   101 	* Empty the object config
   102 	*/
   103 	void		Empty();
   104 
   105 private:
   106 	RArray<TWServConfigData>	iArrayName;
   107 	RArray<TWServConfigData>	iArrayData;
   108 	};
   109 
   110 #endif // __T_WSERV_CONFIG_DATA_H__
   111