2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-17 19:44:31 +02:00
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2014-05-12 16:45:25 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library icinga;
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
abstract class CustomVarObject : ConfigObject
|
2014-05-12 16:45:25 +02:00
|
|
|
{
|
2021-10-08 16:43:09 +02:00
|
|
|
[config, signal_with_old_value] Dictionary::Ptr vars;
|
2014-05-12 16:45:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|