summaryrefslogtreecommitdiffstats
path: root/lib/livestatus/orfilter.hpp
blob: df855c1a9a8c14bc58c98e9407fe168540722ad9 (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 ORFILTER_H
#define ORFILTER_H

#include "livestatus/combinerfilter.hpp"

using namespace icinga;

namespace icinga
{

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

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

}

#endif /* ORFILTER_H */