mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			507 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			507 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 | 
						|
 | 
						|
#ifndef OBJECTRULE_H
 | 
						|
#define OBJECTRULE_H
 | 
						|
 | 
						|
#include "config/i2-config.hpp"
 | 
						|
#include "config/expression.hpp"
 | 
						|
#include "base/debuginfo.hpp"
 | 
						|
#include <set>
 | 
						|
 | 
						|
namespace icinga
 | 
						|
{
 | 
						|
 | 
						|
/**
 | 
						|
 * @ingroup config
 | 
						|
 */
 | 
						|
class ObjectRule
 | 
						|
{
 | 
						|
public:
 | 
						|
	typedef std::set<String> TypeSet;
 | 
						|
 | 
						|
	static void RegisterType(const String& sourceType);
 | 
						|
	static bool IsValidSourceType(const String& sourceType);
 | 
						|
 | 
						|
private:
 | 
						|
	ObjectRule();
 | 
						|
 | 
						|
	static TypeSet m_Types;
 | 
						|
};
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
#endif /* OBJECTRULE_H */
 |