![]() |

Section Contents
Applications that use this class will not work correctly on a version of EPOC earlier than ER5.
|
CBase |
Abstract: CBase behaviour. |
|
CContactFieldStorage |
Abstract: Field data storage. |
cntfldst.h
cntmodel.lib
This class is used to store, set and retrieve generic field data this is data contained in a descriptor array, in a descriptor, or in a dynamic buffer. An object of this class can be retrieved using CContactItemField::StoreStorage().
void SetThingL(MDesCArray* anArray);
Set the data to be stored in the field from a descriptor array.
|
MDesCArray* anArray |
Pointer to a descriptor array containing the field data to be stored. |
void SetThingL(const TDesC& aDes);
Set the data to be stored in the field from a descriptor.
|
const TDesC& aDes |
Descriptor containing the data to be stored in the field. |
void SetThingL(CBufBase* abuf);
Set the data to be stored in the field from a buffer.
|
CBufBase* abuf |
Pointer to a buffer containing the data to be stored in the field. |
CBufBase* Thing() const;
Retrieve the data stored in the field as a pointer to a buffer.
|
CBufBase* |
Pointer to a buffer containing the data stored in the field. |
|
|