| 1152 | } |
| 1153 | |
| 1154 | void SerializerService::serializeDataDescription(ClusteredDataDescription const& data, std::ostream& stream) |
| 1155 | { |
| 1156 | cereal::PortableBinaryOutputArchive archive(stream); |
| 1157 | archive(Const::ProgramVersion); |
| 1158 | archive(data); |
| 1159 | } |
| 1160 | |
| 1161 | bool SerializerService::deserializeDataDescription(ClusteredDataDescription& data, std::filesystem::path const& filename) |
| 1162 | { |
nothing calls this directly
no outgoing calls
no test coverage detected