#include "outputsaxreceptor.h"
Go to the source code of this file.
Defines | |
#define | ENSURE_TEXT_CODEC_EXISTS |
#define | OUTPUT_TO_DEVICE(str) |
#define | OUTPUT_TO_DEVICE_LENGTH(str, length) |
#define | OUTPUT_TO_DEVICE_CHAR(c) |
This file contains the definition of OutputSAXReceptor class methods.
Definition in file outputsaxreceptor.cpp.
|
Value: { \ if (!textCodec) \ createDefaultTextCodec(); \ } Definition at line 36 of file outputsaxreceptor.cpp. |
|
Value: { \ ENSURE_TEXT_CODEC_EXISTS; \ if (outputDevice) \ textCodec->output(outputDevice, str, \ (Encodings::MIB)ExaltOptions::getOption(ExaltOptions::Encoding)); \ }
Definition at line 49 of file outputsaxreceptor.cpp. Referenced by OutputSAXReceptor::characterData, OutputSAXReceptor::comment, OutputSAXReceptor::endCDATASection, OutputSAXReceptor::endDoctypeDecl, OutputSAXReceptor::endElement, OutputSAXReceptor::entityDecl, OutputSAXReceptor::notationDecl, OutputSAXReceptor::processingInstruction, OutputSAXReceptor::startCDATASection, OutputSAXReceptor::startDoctypeDecl, OutputSAXReceptor::startElement, and OutputSAXReceptor::xmlDecl. |
|
Value: { \ ENSURE_TEXT_CODEC_EXISTS; \ if (outputDevice) \ textCodec->output(outputDevice, c, \ (Encodings::MIB)ExaltOptions::getOption(ExaltOptions::Encoding)); \ }
Definition at line 79 of file outputsaxreceptor.cpp. Referenced by OutputSAXReceptor::characterData. |
|
Value: { \ ENSURE_TEXT_CODEC_EXISTS; \ if (outputDevice) \ textCodec->output(outputDevice, str, length, \ (Encodings::MIB)ExaltOptions::getOption(ExaltOptions::Encoding)); \ }
Definition at line 65 of file outputsaxreceptor.cpp. Referenced by OutputSAXReceptor::characterData, OutputSAXReceptor::defaultHandler, and OutputSAXReceptor::entityDecl. |