icinga2/lib/base/dynamicobject.ti

18 lines
377 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;
2013-10-26 09:41:45 +02:00
[protected] Dictionary::Ptr extensions;
};
}