| 1189 | } |
| 1190 | |
| 1191 | void SerializerService::deserializeAuxiliaryData(AuxiliaryData& auxiliaryData, std::istream& stream) |
| 1192 | { |
| 1193 | boost::property_tree::ptree tree; |
| 1194 | boost::property_tree::read_json(stream, tree); |
| 1195 | auxiliaryData = AuxiliaryDataParserService::get().decodeAuxiliaryData(tree); |
| 1196 | } |
| 1197 | |
| 1198 | void SerializerService::serializeSimulationParameters(SimulationParameters const& parameters, std::ostream& stream) |
| 1199 | { |
nothing calls this directly
no test coverage detected