#include <stdint.h>
#include <string>
#include <vector>
#include <boost/filesystem/path.hpp>
#include "uhal/log/exception.hpp"
Go to the source code of this file.
|
void | uhal::utilities::PugiXMLParseResultPrettifier (const pugi::xml_parse_result &aLoadResult, const boost::filesystem::path &aPath, const std::vector< uint8_t > &aFile) |
| Helper function to make debugging failures when parsing XML files easier. More...
|
|
template<bool DebugInfo> |
bool | uhal::utilities::GetXMLattribute (const pugi::xml_node &aNode, const std::string &aAttrName, std::string &aTarget) |
| Helper function to retrieve a named attribute from a PugiXML node and cast it to the correct type. More...
|
|
template<bool DebugInfo> |
bool | uhal::utilities::GetXMLattribute (const pugi::xml_node &aNode, const std::string &aAttrName, int32_t &aTarget) |
| Helper function to retrieve a named attribute from a PugiXML node and cast it to the correct type. More...
|
|
template<bool DebugInfo> |
bool | uhal::utilities::GetXMLattribute (const pugi::xml_node &aNode, const std::string &aAttrName, uint32_t &aTarget) |
| Helper function to retrieve a named attribute from a PugiXML node and cast it to the correct type. More...
|
|
template<bool DebugInfo> |
bool | uhal::utilities::GetXMLattribute (const pugi::xml_node &aNode, const std::string &aAttrName, double &aTarget) |
| Helper function to retrieve a named attribute from a PugiXML node and cast it to the correct type. More...
|
|
template<bool DebugInfo> |
bool | uhal::utilities::GetXMLattribute (const pugi::xml_node &aNode, const std::string &aAttrName, float &aTarget) |
| Helper function to retrieve a named attribute from a PugiXML node and cast it to the correct type. More...
|
|
template<bool DebugInfo> |
bool | uhal::utilities::GetXMLattribute (const pugi::xml_node &aNode, const std::string &aAttrName, bool &aTarget) |
| Helper function to retrieve a named attribute from a PugiXML node and cast it to the correct type. More...
|
|