| 339 | void XMLSerializationNode::setValueUChar(unsigned char c) { node.text().set((unsigned int)c); } |
| 340 | |
| 341 | int XMLSerializationNode::getValueInt() { return node.text().as_int(); } |
| 342 | |
| 343 | void XMLSerializationNode::setValueInt(int i) { node.text().set(i); } |
| 344 |