mirror of https://github.com/Icinga/icinga2.git
22 lines
476 B
Plaintext
22 lines
476 B
Plaintext
#include <boost/smart_ptr/make_shared.hpp>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class DynamicObject
|
|
{
|
|
[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 boost::make_shared<Dictionary>(); }}}
|
|
};
|
|
[protected] Dictionary::Ptr extensions;
|
|
};
|
|
|
|
}
|