| 189 | } |
| 190 | |
| 191 | IXmlNode::KeyValueList IXmlNode::GetAttributeList() const { |
| 192 | KeyValueList attr_list; |
| 193 | for (const auto& [key, value] : attribute_list_) { |
| 194 | if (!key.empty()) { |
| 195 | attr_list.emplace(key, value); |
| 196 | } |
| 197 | } |
| 198 | return attr_list; |
| 199 | } |
| 200 | |
| 201 | bool IXmlNode::HasChildren() const { |
| 202 | return !node_list_.empty(); |