Removes all attributes of node.
| 1307 | |
| 1308 | //! Removes all attributes of node. |
| 1309 | void remove_all_attributes() |
| 1310 | { |
| 1311 | for (xml_attribute<Ch> *attribute = first_attribute(); attribute; attribute = attribute->m_next_attribute) |
| 1312 | attribute->m_parent = 0; |
| 1313 | m_first_attribute = 0; |
| 1314 | } |
| 1315 | |
| 1316 | private: |
| 1317 |
no outgoing calls
no test coverage detected