mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-23 09:50:25 -05:00
13 lines
183 B
Text
13 lines
183 B
Text
#include "base/dynamicobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class CustomVarObject : DynamicObject
|
|
{
|
|
[config] Dictionary::Ptr vars (VarsRaw);
|
|
|
|
[state] Value override_vars;
|
|
};
|
|
|
|
}
|