| 6 | using namespace icinga; |
| 7 | |
| 8 | bool AndFilter::Apply(const Table::Ptr& table, const Value& row) |
| 9 | { |
| 10 | for (const Filter::Ptr& filter : m_Filters) { |
| 11 | if (!filter->Apply(table, row)) |
| 12 | return false; |
| 13 | } |
| 14 | |
| 15 | return true; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected