Allow intrusive pointers to ApplyRule

This commit is contained in:
Alexander A. Klimov 2022-10-17 17:24:11 +02:00
parent c7d656716f
commit 449a3c14cf
1 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,7 @@
#include "config/i2-config.hpp"
#include "config/expression.hpp"
#include "base/debuginfo.hpp"
#include "base/shared-object.hpp"
#include "base/type.hpp"
#include <unordered_map>
@ -15,9 +16,11 @@ namespace icinga
/**
* @ingroup config
*/
class ApplyRule
class ApplyRule : public SharedObject
{
public:
DECLARE_PTR_TYPEDEFS(ApplyRule);
typedef std::map<String, std::vector<String> > TypeMap;
typedef std::unordered_map<Type*, std::unordered_map<Type*, std::vector<ApplyRule>>> RuleMap;