icinga2/lib/livestatus/andfilter.hpp

27 lines
395 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-03-10 12:24:03 +01:00
#ifndef ANDFILTER_H
#define ANDFILTER_H
2014-05-25 16:23:35 +02:00
#include "livestatus/combinerfilter.hpp"
2013-03-17 20:19:29 +01:00
using namespace icinga;
namespace icinga
2013-03-10 12:24:03 +01:00
{
/**
* @ingroup livestatus
*/
2018-01-04 06:11:04 +01:00
class AndFilter final : public CombinerFilter
2013-03-10 12:24:03 +01:00
{
public:
DECLARE_PTR_TYPEDEFS(AndFilter);
2013-03-10 12:24:03 +01:00
bool Apply(const Table::Ptr& table, const Value& row) override;
2013-03-10 12:24:03 +01:00
};
}
#endif /* ANDFILTER_H */