| 741 | } |
| 742 | |
| 743 | void XMLFeature::SetAttribute(string const & key, string const & value) |
| 744 | { |
| 745 | auto node = HasAttribute(key) ? GetRootNode().attribute(key.data()) : GetRootNode().append_attribute(key.data()); |
| 746 | |
| 747 | node.set_value(value.data()); |
| 748 | } |
| 749 | |
| 750 | pugi::xml_node const XMLFeature::GetRootNode() const |
| 751 | { |