| 312 | void XMLSerializationNode::setValue(const UString &str) { node.text().set(str.c_str()); } |
| 313 | |
| 314 | UString XMLSerializationNode::getAttribute(const UString &attribute) |
| 315 | { |
| 316 | return node.attribute(attribute.c_str()).value(); |
| 317 | } |
| 318 | |
| 319 | void XMLSerializationNode::setAttribute(const UString &attribute, const UString &value) |
| 320 | { |
no outgoing calls
no test coverage detected