mirror of https://github.com/Icinga/icinga2.git
32 lines
461 B
C++
32 lines
461 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef NEGATEFILTER_H
|
|
#define NEGATEFILTER_H
|
|
|
|
#include "livestatus/filter.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* @ingroup livestatus
|
|
*/
|
|
class NegateFilter final : public Filter
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(NegateFilter);
|
|
|
|
NegateFilter(Filter::Ptr inner);
|
|
|
|
bool Apply(const Table::Ptr& table, const Value& row) override;
|
|
|
|
private:
|
|
Filter::Ptr m_Inner;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* NEGATEFILTER_H */
|