mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-01 19:04:39 +02:00
11 lines
210 B
C++
11 lines
210 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#include "livestatus/combinerfilter.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
void CombinerFilter::AddSubFilter(const Filter::Ptr& filter)
|
|
{
|
|
m_Filters.push_back(filter);
|
|
}
|