![]() |

Section Contents
Applications that use this class will not work correctly on a version of EPOC earlier than ER5.
|
CBase |
Abstract: CBase behaviour |
msvreg.h
ment.lib
This class encapsulates the registration data for an MTM group. It is used to access and write the registration data file for an MTM group.
static CMtmGroupData* NewL(TUid aMtmTypeUid,TUid aTechnologyTypeUid,const CMtmDllInfoArray& aMtmDllInfoArray);
Use this function to create a new CMtmGroupData and initialise it with registration data for an MTM group.
|
TUid aMtmTypeUid |
UID that uniquely identifies the MTM group |
|
TUid aTechnologyTypeUid |
UID that can be used to indicate the messaging technology which the MTM group implements |
|
const CMtmDllInfoArray& aMtmDllInfoArray |
Array of registration data for the MTM components in the group |
|
CMtmGroupData* |
New initialised CMtmGroupData |
|
KErrNoMemory |
A memory allocation failed |
static CMtmGroupData* NewL(RReadStream& aStream);
Use this function to create a new CMtmGroupData and initialise it from the stream indicated by aStream.
|
RReadStream& aStream |
Stream from which to read previously externalised CMtmGroupData |
|
CMtmGroupData* |
New initialised CMtmGroupData |
|
KErrNoMemory |
A memory allocation failed |
void ExternalizeL(RWriteStream& aStream) const;
Use this function to externalise group registration data. This is the method by which registration data is written to a MTM registration data file.
|
RWriteStream& aStream |
Stream to which to externalise object |
void InternalizeL(RReadStream& aStream);
Use this function to internalise group registration data.
|
RReadStream& aStream |
Stream from which to internalise object |
const CMtmDllInfoArray& MtmDllInfoArray() const;
Use this function to get an array of registration data for the MTM components in the group.
|
CMtmDllInfoArray& |
Array of registration data for the MTM components in the group |
TUid MtmTypeUid() const;
Use this function to get the group UID.
|
TUid |
UID that uniquely identifies the MTM group |
TUid TechnologyTypeUid() const;
Use this function to get the technology UID.
|
TUid |
UID that indicates the messaging technology that the MTM group implements |
TBool operator==(const CMtmGroupData& aMtmGroupData) const;
Use this operator to test for equality with another CMtmGroupData object.
|
const CMtmGroupData& aMtmGroupData |
CMtmGroupData object with which to compare |
|
TBool |
ETrue: equal EFalse: unequal. |
|
|