First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
21 #ifndef __T_WSERV_CONFIG_DATA_H__
22 #define __T_WSERV_CONFIG_DATA_H__
26 const TInt KMaxWServConfigDataSize=256;
27 typedef TBuf<KMaxWServConfigDataSize> TWServConfigData;
30 * Test Active Notification class
33 class CT_WServConfigData
44 virtual ~CT_WServConfigData();
47 * Add a data entry to the config
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
53 void AddDataL(const TDesC& aName, const TDesC& aData);
56 * Add a data entry to the config
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
62 void ReplaceData(const TDesC& aName, const TDesC& aData);
65 * Delete a data entry from the config
67 * @param aName name of the config entry
69 * @leave KErrNotFound if the config entry aName is not found
71 void DeleteDataL(const TDesC& aName);
74 * Get the list of data
76 * @param aIndex of an index into the list of data
78 * @return Pointer to list of data
80 const TWServConfigData& GetData(const TInt aIndex) const;
83 * Get the list of names
85 * @param aIndex of an index into the list of names
87 * @return Pointer to list of names
89 const TWServConfigData& GetName(const TInt aIndex) const;
93 * Return the number of entries
95 * @return The number of entries stored in the config data.
98 TInt NoOfEntriesL() const;
101 * Empty the object config
106 RArray<TWServConfigData> iArrayName;
107 RArray<TWServConfigData> iArrayData;
110 #endif // __T_WSERV_CONFIG_DATA_H__