diff options
Diffstat (limited to 'lib/methods/ifwapichecktask.hpp')
-rw-r--r-- | lib/methods/ifwapichecktask.hpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/methods/ifwapichecktask.hpp b/lib/methods/ifwapichecktask.hpp new file mode 100644 index 0000000..3932733 --- /dev/null +++ b/lib/methods/ifwapichecktask.hpp @@ -0,0 +1,27 @@ +/* Icinga 2 | (c) 2023 Icinga GmbH | GPLv2+ */ + +#pragma once + +#include "methods/i2-methods.hpp" +#include "icinga/service.hpp" +#include "base/dictionary.hpp" + +namespace icinga +{ + +/** + * Executes checks via Icinga for Windows API. + * + * @ingroup methods + */ +class IfwApiCheckTask +{ +public: + static void ScriptFunc(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr, + const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros); + +private: + IfwApiCheckTask(); +}; + +} |