| 813 | } |
| 814 | |
| 815 | void XMLNode::SetValue(const char* str, bool staticMem) |
| 816 | { |
| 817 | if (staticMem) |
| 818 | { |
| 819 | _value.SetInternedStr(str); |
| 820 | } |
| 821 | else |
| 822 | { |
| 823 | _value.SetStr(str); |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | XMLNode* XMLNode::DeepClone(XMLDocument* target) const |
| 828 | { |
no test coverage detected