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

void Impala::Core::IDash::XmlCase::ReadData ( String  docName,
Util::IOBuffer ioBuf 
) [inline, private]

Definition at line 69 of file XmlCase.h.

References Impala::Util::XmlDoc::GetAttributeValue(), Impala::Util::XmlDoc::GetChildNode(), Impala::Util::XmlDoc::GetElementValue(), ILOG_DEBUG, mId, mValid, mVideosLink, and Impala::Persistency::XmlFileReader::Read().

Referenced by XmlCase().

00070     {
00071         mValid = false;
00072         Persistency::XmlFileReader reader;
00073         DOMDocument* doc = reader.Read(docName, ioBuf);
00074         if (!doc)
00075             return;
00076         DOMNode* casee = GetChildNode(doc, "case", true);
00077         DOMNode* id = GetChildNode(casee, "id", true);
00078         mId = GetElementValue(id);
00079         ILOG_DEBUG("id = " << mId);
00080 
00081         DOMNode* videos = GetChildNode(casee, "videos", true);
00082         mVideosLink = GetAttributeValue(videos, "xlink:href");
00083         ILOG_DEBUG("videos = " << mVideosLink);
00084         mValid = true;
00085     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:13:30 2010 for ImpalaSrc by  doxygen 1.5.1