icinga2/lib/icinga/customvarobject.hpp

32 lines
686 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef CUSTOMVAROBJECT_H
#define CUSTOMVAROBJECT_H
2014-05-25 16:23:35 +02:00
#include "icinga/i2-icinga.hpp"
2018-01-18 13:50:38 +01:00
#include "icinga/customvarobject-ti.hpp"
#include "base/configobject.hpp"
2014-05-25 16:23:35 +02:00
#include "remote/messageorigin.hpp"
namespace icinga
{
/**
* An object with custom variable attribute.
*
* @ingroup icinga
*/
2017-12-31 07:22:16 +01:00
class CustomVarObject : public ObjectImpl<CustomVarObject>
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(CustomVarObject);
void ValidateVars(const Lazy<Dictionary::Ptr>& lvalue, const ValidationUtils& utils) final;
};
2017-12-31 07:22:16 +01:00
int FilterArrayToInt(const Array::Ptr& typeFilters, const std::map<String, int>& filterMap, int defaultValue);
}
#endif /* CUSTOMVAROBJECT_H */