| 1311 | } |
| 1312 | |
| 1313 | void load(int startIndex, std::vector<std::string>& serializedData, double& value) |
| 1314 | { |
| 1315 | if (startIndex < serializedData.size()) { |
| 1316 | value = std::stod(serializedData.at(startIndex)); |
| 1317 | } |
| 1318 | } |
| 1319 | |
| 1320 | void save(std::vector<std::string>& serializedData, double& value) |
| 1321 | { |
no test coverage detected