icinga2/lib/config/objectrule.cpp
Michael Friedrich d14a88235d Replace Copyright header with a short version, part I
CLion -> replace in path
2019-02-25 14:48:22 +01:00

19 lines
370 B
C++

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "config/objectrule.hpp"
#include <set>
using namespace icinga;
ObjectRule::TypeSet ObjectRule::m_Types;
void ObjectRule::RegisterType(const String& sourceType)
{
m_Types.insert(sourceType);
}
bool ObjectRule::IsValidSourceType(const String& sourceType)
{
return m_Types.find(sourceType) != m_Types.end();
}