| 272 | } |
| 273 | |
| 274 | void Load() const override |
| 275 | { |
| 276 | const std::vector<SaveLoad> slt = SlCompatTableHeader(GetLinkGraphDesc(), _linkgraph_sl_compat); |
| 277 | |
| 278 | int index; |
| 279 | while ((index = SlIterateArray()) != -1) { |
| 280 | LinkGraph *lg = new (LinkGraphID(index)) LinkGraph(); |
| 281 | SlObject(lg, slt); |
| 282 | } |
| 283 | } |
| 284 | }; |
| 285 | |
| 286 | /** |
nothing calls this directly
no test coverage detected