icinga2/lib/icinga/servicegroup.ti

19 lines
236 B
Plaintext
Raw Normal View History

2013-10-26 09:41:45 +02:00
#include "base/dynamicobject.h"
namespace icinga
{
class ServiceGroup : DynamicObject
{
[config] String display_name {
get {{{
if (m_DisplayName.IsEmpty())
return GetName();
else
return m_DisplayName;
}}}
2013-10-26 09:41:45 +02:00
};
};
}