本文整理汇总了C++中xml::Document::getTree方法的典型用法代码示例。如果您正苦于以下问题:C++ Document::getTree方法的具体用法?C++ Document::getTree怎么用?C++ Document::getTree使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xml::Document
的用法示例。
在下文中一共展示了Document::getTree方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: parseXMLFile
/***************************************************************
* Function: CodeParser::parseXMLFile()
* Purpose : Parse a an XML IR file
* Initial : Maxime Chevalier-Boisvert on November 18, 2008
****************************************************************
Revisions and bug fixes:
*/
CompUnits CodeParser::parseXMLFile(const std::string& filePath)
{
// Log that we are parsing this file
std::cout << "Parsing XML IR file: \"" << filePath << "\"" << std::endl;
// Create an XML parser object
XML::Parser parser;
// Setup a try block to catch any errors
try
{
// Parse the IR code string
XML::Document xmlIR = parser.parseFile(filePath);
// If the verbose output flag is set
if (ConfigManager::s_verboseVar.getBoolValue() == true)
{
// Output the parsed XML
std::cout << std::endl;
std::cout << "Parsed XML: " << std::endl;
std::cout << xmlIR.toString() << std::endl;
std::cout << std::endl;
}
// Get a pointer to the XML tree root
const XML::Element* pTreeRoot = xmlIR.getTree();
// Parse the XML tree
return parseXMLRoot(pTreeRoot);
}
// If XML parsing error occur
catch (XML::ParseError error)
{
// Log the error
std::cout << "ERROR: XML parsing failed " + error.toString() << std::endl;
// Exit this function
return CompUnits();
}
}