| 117 | //============================== |
| 118 | |
| 119 | XMP_StringPtr XML_Node::GetLeafContentValue() const |
| 120 | { |
| 121 | if ( (! this->IsLeafContentNode()) || this->content.empty() ) return ""; |
| 122 | |
| 123 | return this->content[0]->value.c_str(); |
| 124 | |
| 125 | } // XML_Node::GetLeafContentValue |
| 126 | |
| 127 | // ================================================================================================= |
| 128 | // XML_Node::SetLeafContentValue |
nothing calls this directly
no test coverage detected