| 261 | |
| 262 | |
| 263 | void DOMSerializer::handleComment(const Comment* pComment) const |
| 264 | { |
| 265 | if (_pLexicalHandler) |
| 266 | { |
| 267 | const XMLString& data = pComment->data(); |
| 268 | _pLexicalHandler->comment(data.c_str(), 0, (int) data.length()); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | |
| 273 | void DOMSerializer::handlePI(const ProcessingInstruction* pPI) const |