Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

static String Impala::Util::XmlDoc::GetAttributeValue ( const DOMNamedNodeMap *const   attributes,
const char *const   attributeName,
const char *const   defaultV 
) [inline, static]

Definition at line 199 of file XmlDoc.h.

References GetNodeValue().

00202     {
00203         XMLCh* xAttribName = XMLString::transcode(attributeName);
00204         DOMNode* attrib = attributes->getNamedItem(xAttribName);
00205         XMLString::release(&xAttribName);
00206         if (attrib == 0)
00207             return defaultV;
00208         return GetNodeValue(attrib);
00209     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:41:36 2010 for ImpalaSrc by  doxygen 1.5.1