mirror of https://github.com/Icinga/icinga2.git
34 lines
530 B
C++
34 lines
530 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef ATTRIBUTEFILTER_H
|
|
#define ATTRIBUTEFILTER_H
|
|
|
|
#include "livestatus/filter.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* @ingroup livestatus
|
|
*/
|
|
class AttributeFilter final : public Filter
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(AttributeFilter);
|
|
|
|
AttributeFilter(String column, String op, String operand);
|
|
|
|
bool Apply(const Table::Ptr& table, const Value& row) override;
|
|
|
|
protected:
|
|
String m_Column;
|
|
String m_Operator;
|
|
String m_Operand;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* FILTER_H */
|