icinga2/lib/base/dynamicobject.ti

20 lines
434 B
Plaintext
Raw Normal View History

2013-10-26 09:41:45 +02:00
namespace icinga
{
abstract class DynamicObject
2013-10-26 09:41:45 +02:00
{
[config] String __name (Name);
[config, get_protected] String __type (TypeName);
[config] Dictionary::Ptr methods;
[config] Dictionary::Ptr custom;
[config] Array::Ptr domains;
[config] Array::Ptr authorities;
[get_protected] bool active;
Dictionary::Ptr authority_info {
default {{{ return make_shared<Dictionary>(); }}}
2013-10-26 09:41:45 +02:00
};
[protected] Dictionary::Ptr extensions;
};
}