| 49 | }; |
| 50 | |
| 51 | struct named_relation : relation { |
| 52 | string name; |
| 53 | virtual string ident() { return name; } |
| 54 | virtual ~named_relation() { } |
| 55 | named_relation(string n) : name(n) { } |
| 56 | }; |
| 57 | |
| 58 | struct aliased_relation : named_relation { |
| 59 | relation *rel; |
nothing calls this directly
no outgoing calls
no test coverage detected