Base class for leaf data element contexts. More...
#include <FB2ParserContext.h>
Public Member Functions | |
| FB2DataContextBase (FB2ParserContext *parentContext) | |
Private Member Functions | |
| virtual FB2XMLParserContext * | element (const FB2TokenData &name, const FB2TokenData &ns) |
| Create a context for parsing a child element. | |
| virtual void | startOfElement () |
| Signalize the start of an element. | |
| virtual void | endOfAttributes () |
| Signalize the end of attributes. | |
| virtual void | text (const char *value) |
| Process textual content of an element. | |
Base class for leaf data element contexts.
It provides empty implementations for functions that are typically not needed for processing leaf data elements (i.e., empty elements that only have attributes).
| libebook::FB2DataContextBase::FB2DataContextBase | ( | FB2ParserContext * | parentContext | ) | [explicit] |
| FB2XMLParserContext * libebook::FB2DataContextBase::element | ( | const FB2TokenData & | name, |
| const FB2TokenData & | ns | ||
| ) | [private, virtual] |
Create a context for parsing a child element.
0 if the child element cannot be handled. Implements libebook::FB2XMLParserContext.
| void libebook::FB2DataContextBase::endOfAttributes | ( | ) | [private, virtual] |
Signalize the end of attributes.
Implements libebook::FB2XMLParserContext.
Reimplemented in libebook::FB2InlineImageContext.
| void libebook::FB2DataContextBase::startOfElement | ( | ) | [private, virtual] |
Signalize the start of an element.
This can be used if initialization of the context needs virtual function calls.
Implements libebook::FB2XMLParserContext.
Reimplemented in libebook::FB2InlineImageContext.
| void libebook::FB2DataContextBase::text | ( | const char * | value | ) | [private, virtual] |
Process textual content of an element.
This function can be called more than once if the element has mixed content.
Implements libebook::FB2XMLParserContext.