summaryrefslogtreecommitdiffstats
path: root/lib/livestatus/andfilter.hpp
blob: 8192bf72e0ef25fb85b0ee164e612629147fbcdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */

#ifndef ANDFILTER_H
#define ANDFILTER_H

#include "livestatus/combinerfilter.hpp"

using namespace icinga;

namespace icinga
{

/**
 * @ingroup livestatus
 */
class AndFilter final : public CombinerFilter
{
public:
	DECLARE_PTR_TYPEDEFS(AndFilter);

	bool Apply(const Table::Ptr& table, const Value& row) override;
};

}

#endif /* ANDFILTER_H */