| 448 | //==================== |
| 449 | |
| 450 | void XML_Node::ClearNode() |
| 451 | { |
| 452 | |
| 453 | this->kind = 0; |
| 454 | this->ns.erase(); |
| 455 | this->name.erase(); |
| 456 | this->value.erase(); |
| 457 | |
| 458 | this->RemoveAttrs(); |
| 459 | this->RemoveContent(); |
| 460 | |
| 461 | } // XML_Node::ClearNode |
| 462 | |
| 463 | // ================================================================================================= |
no test coverage detected