| 97 | void startDocument() {} |
| 98 | void endDocument() {} |
| 99 | void startElement(const XMLString& uri, const XMLString& localName, const XMLString& qname, const Attributes& attributes) |
| 100 | { |
| 101 | if (localName == Paths_element_name) |
| 102 | m_pProject->push_back(ProjectFileItem{}); |
| 103 | m_stack.push(localName); |
| 104 | } |
| 105 | void endElement(const XMLString& uri, const XMLString& localName, const XMLString& qname) |
| 106 | { |
| 107 | m_stack.pop(); |
no test coverage detected