| 290 | LGRJChunkHandler() : ChunkHandler('LGRJ', CH_TABLE) {} |
| 291 | |
| 292 | void Save() const override |
| 293 | { |
| 294 | SlTableHeader(GetLinkGraphJobDesc()); |
| 295 | |
| 296 | for (LinkGraphJob *lgj : LinkGraphJob::Iterate()) { |
| 297 | SlSetArrayIndex(lgj->index); |
| 298 | SlObject(lgj, GetLinkGraphJobDesc()); |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | void Load() const override |
| 303 | { |
nothing calls this directly
no test coverage detected