williamr@2: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@4: // under the terms of "Eclipse Public License v1.0" williamr@2: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // williamr@2: williamr@2: inline CParserVCard* CParserPropertyValueAgent::Value() const williamr@2: /** Gets the agent object owned by the property value. williamr@2: williamr@2: @return A pointer to the agent property value. */ williamr@2: {return iValue;} williamr@2: williamr@2: inline void CParserGroupedProperty::SetGroups(CDesC8Array* aArrayOfGroups) williamr@2: /** Sets the list of groups to which the property belongs, replacing any existing williamr@2: list. williamr@2: williamr@2: @param aArrayOfGroups Array of descriptors; each of which specifies williamr@2: a group name. The grouped property takes ownership of the array. */ williamr@2: {iArrayOfGroups=aArrayOfGroups;} williamr@2: williamr@2: inline const CDesC8Array* CParserGroupedProperty::Groups() williamr@2: /** Gets the groups to which the property belongs. williamr@2: williamr@2: @return Pointer to an array of descriptors. Each one specifies a group name. */ williamr@2: {return iArrayOfGroups;}