MCPcopy Create free account
hub / github.com/chrxh/alien / deserializeDataDescription

Method deserializeDataDescription

source/PersisterInterface/SerializerService.cpp:1161–1169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1159}
1160
1161bool 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
1171void SerializerService::deserializeDataDescription(ClusteredDataDescription& data, std::istream& stream)
1172{

Callers

nothing calls this directly

Calls 2

isVersionValidMethod · 0.80
isVersionOutdatedMethod · 0.80

Tested by

no test coverage detected