mirror of https://github.com/Icinga/icinga2.git
23 lines
513 B
C++
23 lines
513 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#include "icinga/checkcommand.hpp"
|
|
#include "icinga/checkcommand-ti.cpp"
|
|
#include "base/configtype.hpp"
|
|
|
|
using namespace icinga;
|
|
|
|
REGISTER_TYPE(CheckCommand);
|
|
|
|
thread_local CheckCommand::Ptr CheckCommand::ExecuteOverride;
|
|
|
|
void CheckCommand::Execute(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr,
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros)
|
|
{
|
|
GetExecute()->Invoke({
|
|
checkable,
|
|
cr,
|
|
resolvedMacros,
|
|
useResolvedMacros
|
|
});
|
|
}
|