2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-07-11 15:52:01 +02:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/aggregator.hpp"
|
2013-07-11 15:52:01 +02:00
|
|
|
|
2013-11-11 11:57:25 +01:00
|
|
|
using namespace icinga;
|
2013-07-11 15:52:01 +02:00
|
|
|
|
|
|
|
void Aggregator::SetFilter(const Filter::Ptr& filter)
|
|
|
|
{
|
|
|
|
m_Filter = filter;
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
Filter::Ptr Aggregator::GetFilter() const
|
2013-07-11 15:52:01 +02:00
|
|
|
{
|
|
|
|
return m_Filter;
|
|
|
|
}
|
2017-08-14 15:30:06 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
AggregatorState::~AggregatorState()
|
2017-08-14 15:30:06 +02:00
|
|
|
{ }
|