// SPDX-FileCopyrightText: 2012 Icinga GmbH // SPDX-License-Identifier: GPL-2.0-or-later #ifndef NULLEVENTTASK_H #define NULLEVENTTASK_H #include "methods/i2-methods.hpp" #include "icinga/service.hpp" #include "base/dictionary.hpp" namespace icinga { /** * Test class for additional event handler types. Implements the "null" event handler type. * * @ingroup methods */ class NullEventTask { public: static void ScriptFunc(const Checkable::Ptr& service, const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros); private: NullEventTask(); }; } #endif /* NULLEVENTTASK_H */