| 300 | } |
| 301 | |
| 302 | void Load() const override |
| 303 | { |
| 304 | const std::vector<SaveLoad> slt = SlCompatTableHeader(GetLinkGraphJobDesc(), _linkgraph_job_sl_compat); |
| 305 | |
| 306 | int index; |
| 307 | while ((index = SlIterateArray()) != -1) { |
| 308 | LinkGraphJob *lgj = new (LinkGraphJobID(index)) LinkGraphJob(); |
| 309 | SlObject(lgj, slt); |
| 310 | } |
| 311 | } |
| 312 | }; |
| 313 | |
| 314 | /** |
nothing calls this directly
no test coverage detected