// SPDX-FileCopyrightText: 2012 Icinga GmbH // SPDX-License-Identifier: GPL-2.0-or-later #include "config/objectrule.hpp" #include 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(); }