This callback function is called by libexpat. It's a static wrapper around startElement().
| 151 | // This callback function is called by libexpat. It's a static wrapper |
| 152 | // around startElement(). |
| 153 | static void XMLCALL startElement_cb(void* userData, const XML_Char* name, const XML_Char** attrs) noexcept { |
| 154 | static_cast<XMLValidator*>(userData)->startElement(name, attrs); |
| 155 | } |
| 156 | |
| 157 | // This callback function is called by libexpat. It's a static wrapper |
| 158 | // around endElement(). |
nothing calls this directly
no test coverage detected