| 42 | static inline const SaveLoadCompatTable compat_description = _linkgraph_edge_sl_compat; |
| 43 | |
| 44 | void Save(Node *bn) const override |
| 45 | { |
| 46 | SlSetStructListLength(bn->edges.size()); |
| 47 | for (Edge &e : bn->edges) { |
| 48 | SlObject(&e, this->GetDescription()); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | void Load(Node *bn) const override |
| 53 | { |
nothing calls this directly
no test coverage detected