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