| 308 | void XMLSerializationNode::setName(const UString &str) { node.set_name(str.c_str()); } |
| 309 | |
| 310 | UString XMLSerializationNode::getValue() { return node.text().get(); } |
| 311 | |
| 312 | void XMLSerializationNode::setValue(const UString &str) { node.text().set(str.c_str()); } |
| 313 |