| 129 | //============================== |
| 130 | |
| 131 | void XML_Node::SetLeafContentValue ( XMP_StringPtr newValue ) |
| 132 | { |
| 133 | XML_Node * valueNode; |
| 134 | |
| 135 | if ( ! this->content.empty() ) { |
| 136 | valueNode = this->content[0]; |
| 137 | } else { |
| 138 | valueNode = new XML_Node ( this, "", kCDataNode ); |
| 139 | this->content.push_back ( valueNode ); |
| 140 | } |
| 141 | |
| 142 | valueNode->value = newValue; |
| 143 | |
| 144 | } // XML_Node::SetLeafContentValue |
| 145 | |
| 146 | // ================================================================================================= |
| 147 | // XML_Node::CountNamedElements |