| 41 | // <olr:lfrcnp olr:table="olr001_FunctionalRoadClass" olr:code="4"/> |
| 42 | template <typename Value> |
| 43 | bool TableValueFromXML(pugi::xml_node const & node, Value & value) |
| 44 | { |
| 45 | if (!node) |
| 46 | return false; |
| 47 | value = static_cast<Value>(is_signed<Value>::value ? node.attribute("olr:code").as_int() |
| 48 | : node.attribute("olr:code").as_uint()); |
| 49 | return true; |
| 50 | } |
| 51 | |
| 52 | pugi::xml_node GetLinearLocationReference(pugi::xml_node const & node) |
| 53 | { |
no outgoing calls
no test coverage detected