MCPcopy Create free account
hub / github.com/comaps/comaps / UintValueFromXML

Function UintValueFromXML

tools/openlr/decoded_path.cpp:66–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64namespace openlr
65{
66uint32_t UintValueFromXML(pugi::xml_node const & node)
67{
68 auto const value = node.child("olr:value");
69 if (!value)
70 return 0;
71
72 return UintFromXML(value);
73}
74
75void WriteAsMappingForSpark(std::string const & fileName, std::vector<DecodedPath> const & paths)
76{

Callers 1

TrafficModeMethod · 0.85

Calls 1

UintFromXMLFunction · 0.85

Tested by

no test coverage detected