Symbian Developer Library

SYMBIAN OS V6.1 EDITION FOR C++

[Index] [Glossary] [Previous] [Next]



Location: vprop.h
Link against: versit.lib

Class CParserPropertyValueInt

CParserPropertyValueInt

Support

Supported from 5.0

Description

A property value which is stored using a signed integer. For example, a priority property value in a vCalendar might be stored using this class.

To find out the property value type, use Uid() defined in the base class CParserPropertyValue. A signed integer property UID has the value KVersitPropertyIntUid.

The class defines an ExternalizeL() function which has not been documented. It is invoked by the parser's ExternalizeL() function.

Derivation

CBaseBase class for all classes to be instantiated on the heap
CParserPropertyValueAbstract base class for all property values
CParserPropertyValueIntA property value which is stored using a signed integer

Defined in CParserPropertyValueInt:
CParserPropertyValueInt(), Value()

Inherited from CBase:
operator new()

Inherited from CParserPropertyValue:
EncodeL(), ExternalizeL(), IsAsciiCharacterSetSufficient(), SupportsInterface(), Uid()


Construction


CParserPropertyValueInt()

CParserPropertyValueInt(TInt& aValue);

Description

Constructs the property value with a signed integer. Sets the property value’s UID to KVersitPropertyIntUid.

Parameters

TInt& aValue

A signed integer value

[Top]


Property value


Value()

TInt Value() const;

Description

Gets the signed integer property value.

Return value

TInt

The signed integer property value.