| 33 | |
| 34 | template <storage::Ownership Ownership> |
| 35 | inline void write(storage::tar::FileWriter &writer, |
| 36 | const std::string &name, |
| 37 | const detail::IntersectionBearingsContainer<Ownership> &intersection_bearings) |
| 38 | { |
| 39 | storage::serialization::write(writer, name + "/bearing_values", intersection_bearings.values_); |
| 40 | storage::serialization::write( |
| 41 | writer, name + "/node_to_class_id", intersection_bearings.node_to_class_id_); |
| 42 | util::serialization::write( |
| 43 | writer, name + "/class_id_to_ranges", intersection_bearings.class_id_to_ranges_table_); |
| 44 | } |
| 45 | |
| 46 | // read/write for properties file |
| 47 | inline void |
no test coverage detected