| 1406 | } |
| 1407 | |
| 1408 | void Load(TObject *object) const override |
| 1409 | { |
| 1410 | auto &vector = this->GetVector(object); |
| 1411 | size_t count = this->GetLength(); |
| 1412 | |
| 1413 | vector.reserve(count); |
| 1414 | while (count-- > 0) { |
| 1415 | auto &item = vector.emplace_back(); |
| 1416 | SlObject(&item, this->GetLoadDescription()); |
| 1417 | } |
| 1418 | } |
| 1419 | }; |
| 1420 | |
| 1421 | #endif /* SAVELOAD_H */ |
nothing calls this directly
no test coverage detected