Location:
VPROP.H
Link against: versit.lib
class CParserPropertyValueInt : public CParserPropertyValue;
An integer property value parser.
This stores a property value as a signed integer. For example, an employee ID number might be stored using this class.
The UID for an integer property value is KVersitPropertyIntUid.
CBase
- Base class for all classes to be instantiated on the heap
CParserPropertyValue
- Abstract base class for all property values
CParserPropertyValueInt
- An integer property value parser
Defined in CParserPropertyValueInt
:
CParserPropertyValueInt()
, ExternalizeL()
, Value()
, iValue
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from CParserPropertyValue
:
Append()
,
EncodeL()
,
FoldAndWriteValueToStreamL()
,
FoldEncodeAndWriteValueToStreamL()
,
IsAsciiCharacterSetSufficient()
,
PlugIn()
,
SetPlugIn()
,
SupportsInterface()
,
Uid()
IMPORT_C CParserPropertyValueInt(TInt aValue);
Constructs the property value with a signed integer.
Sets the property value's UID to KVersitPropertyIntUid.
|
inline TInt Value() const;
Gets the signed integer property value.
|
virtual IMPORT_C void ExternalizeL(RWriteStream &aStream, const Versit::TEncodingAndCharset &aEncodingCharset, TInt);
Externalizes the integer property value to aStream.
|
protected: TInt iValue;