mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-10-31 11:14:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			472 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			472 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | |
| 
 | |
| #ifndef IDOCHECKTASK_H
 | |
| #define IDOCHECKTASK_H
 | |
| 
 | |
| #include "db_ido/dbconnection.hpp"
 | |
| #include "icinga/checkable.hpp"
 | |
| 
 | |
| namespace icinga
 | |
| {
 | |
| 
 | |
| /**
 | |
|  * IDO check type.
 | |
|  *
 | |
|  * @ingroup db_ido
 | |
|  */
 | |
| class IdoCheckTask
 | |
| {
 | |
| public:
 | |
| 	static void ScriptFunc(const Checkable::Ptr& service, const CheckResult::Ptr& cr,
 | |
| 		const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
 | |
| 
 | |
| private:
 | |
| 	IdoCheckTask();
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif /* IDOCHECKTASK_H */
 |