mirror of https://github.com/Icinga/icinga2.git
23 lines
352 B
Plaintext
23 lines
352 B
Plaintext
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class TimePeriod : DynamicObject
|
|
{
|
|
[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;
|
|
};
|
|
|
|
}
|