MCPcopy Create free account
hub / github.com/Icinga/icinga2 / Apply

Method Apply

lib/livestatus/andfilter.cpp:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6using namespace icinga;
7
8bool 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected