addXMLEndTag
Appends an XML end tag to the XML stream.
Declaration
virtual bool addXMLEndTag(
const char *tagString);Parameters
- tagString:
The name of the XML tag to emit; for example, "string".
Return Value
true if an XML end tag for tagString is successfully added to the XML stream, false otherwise.
Overview
This function emits the named tag, preceded by a slash character to indicate the closing of an entity, all enclosed within a pair of angle brackets.
A call to this function must balance an earlier call to addXMLStartTag using the same tagString.