icinga2/lib/methods/clusterzonechecktask.hpp

29 lines
485 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef CLUSTERZONECHECKTASK_H
#define CLUSTERZONECHECKTASK_H
#include "icinga/service.hpp"
namespace icinga
{
/**
* Cluster zone check type.
*
* @ingroup methods
*/
class ClusterZoneCheckTask
{
public:
static void ScriptFunc(const Checkable::Ptr& service, const CheckResult::Ptr& cr,
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
private:
ClusterZoneCheckTask();
};
}
#endif /* CLUSTERZONECHECKTASK_H */