| 1484 | } |
| 1485 | |
| 1486 | bool SerializerService::wrapGenome(ClusteredDataDescription& output, std::vector<uint8_t> const& input) |
| 1487 | { |
| 1488 | output.clear(); |
| 1489 | output.addCluster(ClusterDescription().addCell(CellDescription().setCellFunction(ConstructorDescription().setGenome(input)))); |
| 1490 | return true; |
| 1491 | } |
| 1492 | |
| 1493 | |
| 1494 | bool SerializerService::unwrapGenome(std::vector<uint8_t>& output, ClusteredDataDescription const& input) |
nothing calls this directly
no test coverage detected