EPOC   SDK Home Glossary Indexes Previous Next Up

CParserPropertyValueInt class


Contents


CParserPropertyValueInt class — Signed integer property value

Section Contents


Overview

Compatibility

Applications that use this class will not work correctly on a version of EPOC earlier than ER5.

Derivation

CBase

Abstract: CBase behaviour.

CParserPropertyValue

Abstract: Base class for all property values.

Defined in

vprop.h

Link against

versit.lib

Description

This class is used to store a property value which is specified as a signed integer. For example, a priority property value in a vCalendar entity 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.


Construction


CParserPropertyValueInt() — C++ constructor with signed integer

CParserPropertyValueInt(TInt& aValue);

Description

The C++ constructor is used to construct the property value with a signed integer.

Arguments

TInt& aValue

A signed integer value


Property value


Value() — Get the property value

TInt Value() const;

Description

Retrieves the signed integer property value.

Return value

TInt

The signed integer property value.

EPOC       SDK Home Glossary Indexes Previous Next Up