class MVersitObserver |
A Versit parser observer.
This is a plug-in class and contains only pure virtual functions.
An implementator of this class can find out the version number of an entity being parsed. The version number specifies the version of the vCard/vCalendar specification used by the data of the vCard/vCalendar. This is for use in conjunction with the MVersitPlugin class, which adjusts the parser's behaviour according to the vCard/vCalendar version.
An implementator of this class can also respond to the creation of a new parser for an embedded sub-entity. This is so that the observer can set the MVersitPlugin, as well as itself, for each new parser that is created.
An observer is set up for a Versit parser using CVersitParser::SetObserver().
Public Member Functions | |
---|---|
void | NewParser(CVersitParser *) |
void | VersionSet(CVersitParser *, const TDesC16 &) |
Private Member Functions | |
---|---|
IMPORT_C void | Reserved1() |
IMPORT_C void | Reserved2() |
void | NewParser | ( | CVersitParser * | aParser | ) | [pure virtual] |
CVersitParser * aParser | The newly created Versit entity. |
void | VersionSet | ( | CVersitParser * | aParser, |
const TDesC16 & | aVersion | |||
) | [pure virtual] |
Called when the version property (a property of the name KVersitTokenVERSION) of an entity is parsed during internalisation of a stream, if the Versit parser has an observer.
An implementation of this function can determine the version of an entity being parsed.
Called by CVersitParser::ParsePropertiesL().
CVersitParser * aParser | A pointer to the parser object that detected the version. |
const TDesC16 & aVersion | A unicode string containing the version number detected. |