mirror of https://github.com/Icinga/icinga2.git
14 lines
181 B
Plaintext
14 lines
181 B
Plaintext
|
#include "base/dynamicobject.h"
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
abstract class CustomVarObject : DynamicObject
|
||
|
{
|
||
|
[config] Dictionary::Ptr vars (VarsRaw);
|
||
|
|
||
|
[state] Value override_vars;
|
||
|
};
|
||
|
|
||
|
}
|