| 1159 | } |
| 1160 | |
| 1161 | bool SerializerService::deserializeDataDescription(ClusteredDataDescription& data, std::filesystem::path const& filename) |
| 1162 | { |
| 1163 | zstr::ifstream stream(filename.string(), std::ios::binary); |
| 1164 | if (!stream) { |
| 1165 | return false; |
| 1166 | } |
| 1167 | deserializeDataDescription(data, stream); |
| 1168 | return true; |
| 1169 | } |
| 1170 | |
| 1171 | void SerializerService::deserializeDataDescription(ClusteredDataDescription& data, std::istream& stream) |
| 1172 | { |
nothing calls this directly
no test coverage detected