| 70 | //========================== |
| 71 | |
| 72 | bool XML_Node::IsEmptyLeafNode() const |
| 73 | { |
| 74 | |
| 75 | if ( (this->kind != kElemNode) || (this->content.size() != 0) ) return false; |
| 76 | return true; |
| 77 | |
| 78 | } // XML_Node::IsEmptyLeafNode |
| 79 | |
| 80 | // ================================================================================================= |
| 81 | // XML_Node::GetAttrValue |