| 49 | struct filter |
| 50 | { |
| 51 | filter() : include(false), traverse(false), traverse_openings(false) {} |
| 52 | filter(bool incl, bool trav, bool trav_openings = false) : include(incl), traverse(trav), traverse_openings(trav_openings) {} |
| 53 | /// Should the product be included (true) or excluded (false). |
| 54 | bool include; |
no outgoing calls
no test coverage detected