class MSdpAttributeValueVisitor |
Abstract interface that can be implemented to receive an enumeration of the values in an attribute list.
The class member functions are called by an CSdpAttrValue (or one of its sub-classes) object when CSdpAttrValue::AcceptVisitorL() is called.
Note that:
When AcceptVisitorL() is called on attributes that are not lists (not DEA or DES), only VisitAttributeValueL() is called, passing the attribute value object itself (i.e. *this), and the value attribute type.
When AcceptVisitorL() is called on attributes that are lists (DEA or DES), VisitAttributeValueL() is called for each member of the list
This implements the standard Visitor pattern.
Public Member Functions | |
---|---|
void | EndListL () |
IMPORT_C void | MSAVV_ExtensionInterfaceL ( TUid , void *&) |
void | StartListL ( CSdpAttrValueList &) |
void | VisitAttributeValueL ( CSdpAttrValue &, TSdpElementType ) |
void | EndListL | ( | ) | [pure virtual] |
Called to indicate the end of a list of attribute values.
IMPORT_C void | MSAVV_ExtensionInterfaceL | ( | TUid | aInterface, |
void *& | aObject | |||
) | [virtual] |
Returns a null aObject if the extension is not implemented, or a pointer to another interface if it is. This virtual function allows the M- classes to be extended in future in a binary compatible way by providing a method that clients can override in future to allow extra callbacks to be made via aObject.
TUid aInterface | UID of the interface to return |
void *& aObject | the container for another interface as specified by aInterface |
void | StartListL | ( | CSdpAttrValueList & | aList | ) | [pure virtual] |
Called to indicate the start of a list of attribute values.
This call is followed by a call to VisitAttributeValueL() for each attribute value in the list, and concluded by a call to EndList().
CSdpAttrValueList & aList | Attribute value list |
void | VisitAttributeValueL | ( | CSdpAttrValue & | aValue, |
TSdpElementType | aType | |||
) | [pure virtual] |
Called to pass an attribute value.
CSdpAttrValue & aValue | Attribute value |
TSdpElementType aType | Value type |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.