mirror of
https://github.com/Icinga/icinga2.git
synced 2026-03-03 05:50:46 -05:00
18 lines
233 B
Text
18 lines
233 B
Text
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class HostGroup : DynamicObject
|
|
{
|
|
[config] String display_name {
|
|
get {{{
|
|
if (m_DisplayName.IsEmpty())
|
|
return GetName();
|
|
else
|
|
return m_DisplayName;
|
|
}}}
|
|
};
|
|
};
|
|
|
|
}
|