#include "saxemitter.h"
Go to the source code of this file.
Defines | |
#define | SAFE_CALL_RECEPTOR(x) |
Call given method of the receptor in a safe way. Calls the method x of the saxReceptor only if saxReceptor has been initialized. More... | |
#define | SAFE_CALL_RECEPTOR_RETURN(x) |
Call given method of the receptor and return its return value. If saxReceptor has been initialized, this macro returns the return value of its method x, otherwise it returns 1. More... |
This file contains the definition of SAXEmitter class methods.
Definition in file saxemitter.cpp.
|
Value: if (saxReceptor) \ saxReceptor->x;
Definition at line 40 of file saxemitter.cpp. Referenced by SAXEmitter::characterData, SAXEmitter::comment, SAXEmitter::defaultHandler, SAXEmitter::endCDATASection, SAXEmitter::endDoctypeDecl, SAXEmitter::endElement, SAXEmitter::entityDecl, SAXEmitter::notationDecl, SAXEmitter::processingInstruction, SAXEmitter::reportError, SAXEmitter::startCDATASection, SAXEmitter::startDoctypeDecl, SAXEmitter::startElement, and SAXEmitter::xmlDecl. |
|
Value: if (saxReceptor) \ return saxReceptor->x; \ else \ return 1;
Definition at line 52 of file saxemitter.cpp. Referenced by SAXEmitter::unknownEncoding. |