icinga2/lib/icinga/servicegroup.ti

24 lines
355 B
Plaintext
Raw Normal View History

2014-05-25 16:23:35 +02:00
#include "icinga/customvarobject.hpp"
2013-10-26 09:41:45 +02:00
namespace icinga
{
class ServiceGroup : CustomVarObject
2013-10-26 09:41:45 +02:00
{
[config] String display_name {
get {{{
if (m_DisplayName.IsEmpty())
return GetName();
else
return m_DisplayName;
}}}
2013-10-26 09:41:45 +02:00
};
[config] Array::Ptr groups;
[config] String notes;
[config] String notes_url;
[config] String action_url;
2013-10-26 09:41:45 +02:00
};
}