mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-03 21:25:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			360 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			360 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#include "icinga/customvarobject.hpp"
 | 
						|
 | 
						|
namespace icinga
 | 
						|
{
 | 
						|
 | 
						|
class TimePeriod : CustomVarObject
 | 
						|
{
 | 
						|
	[config] String display_name {
 | 
						|
		get {{{
 | 
						|
			if (m_DisplayName.IsEmpty())
 | 
						|
				return GetName();
 | 
						|
			else
 | 
						|
				return m_DisplayName;
 | 
						|
		}}}
 | 
						|
	};
 | 
						|
	[config] Dictionary::Ptr ranges;
 | 
						|
	[state] Value valid_begin;
 | 
						|
	[state] Value valid_end;
 | 
						|
	[state] Array::Ptr segments;
 | 
						|
};
 | 
						|
 | 
						|
}
 |