Definition at line 184 of file XmlDoc.h. References GetNodeValue(), and ILOG_INFO. 00186 { 00187 XMLCh* xAttribName = XMLString::transcode(attributeName); 00188 DOMNode* attrib = attributes->getNamedItem(xAttribName); 00189 XMLString::release(&xAttribName); 00190 if (attrib == 0) 00191 { 00192 ILOG_INFO("No attribute " + String(attributeName)); 00193 return ""; 00194 } 00195 return GetNodeValue(attrib); 00196 }
Here is the call graph for this function:
|