blob: a809b073f92d6b0747c398002aa598be7fc67523 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "livestatus/aggregator.hpp"
using namespace icinga;
void Aggregator::SetFilter(const Filter::Ptr& filter)
{
m_Filter = filter;
}
Filter::Ptr Aggregator::GetFilter() const
{
return m_Filter;
}
AggregatorState::~AggregatorState()
{ }
|