| 64 | namespace openlr |
| 65 | { |
| 66 | uint32_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 | |
| 75 | void WriteAsMappingForSpark(std::string const & fileName, std::vector<DecodedPath> const & paths) |
| 76 | { |
no test coverage detected