| 214 | // @cmember Enable/Disable the comment handler |
| 215 | |
| 216 | void EnableCommentHandler (bool fEnable = true) |
| 217 | { |
| 218 | assert (m_p != NULL); |
| 219 | XML_SetCommentHandler (m_p, fEnable ? CommentHandler : NULL); |
| 220 | } |
| 221 | |
| 222 | // @cmember Enable/Disable the start CDATA section handler |
| 223 |
nothing calls this directly
no test coverage detected