| 7 | : FilterName(FilterName), NextFilter(std::move(NextFilter)) {} |
| 8 | |
| 9 | void GroupFilter::start( |
| 10 | std::map<unsigned, std::shared_ptr<Definition>> &DefMap) { |
| 11 | check(DefMap); |
| 12 | if (NextFilter) |
| 13 | NextFilter->start(DefMap); |
| 14 | } |
| 15 | |
| 16 | } // namespace ftg |
no outgoing calls