mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 13:45:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			485 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			485 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* 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 */
 |