mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02:00
14 lines
183 B
Plaintext
14 lines
183 B
Plaintext
#include "base/dynamicobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class CustomVarObject : DynamicObject
|
|
{
|
|
[config] Dictionary::Ptr vars (VarsRaw);
|
|
|
|
[state] Value override_vars;
|
|
};
|
|
|
|
}
|