]> granicus.if.org Git - icinga2/blob - lib/livestatus/orfilter.hpp
Docs: Explain across midnight time periods with an overlapping range
[icinga2] / lib / livestatus / orfilter.hpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #ifndef ORFILTER_H
4 #define ORFILTER_H
5
6 #include "livestatus/combinerfilter.hpp"
7
8 using namespace icinga;
9
10 namespace icinga
11 {
12
13 /**
14  * @ingroup livestatus
15  */
16 class OrFilter final : public CombinerFilter
17 {
18 public:
19         DECLARE_PTR_TYPEDEFS(OrFilter);
20
21         bool Apply(const Table::Ptr& table, const Value& row) override;
22 };
23
24 }
25
26 #endif /* ORFILTER_H */