mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-21 01:28:21 +02:00
25 lines
430 B
C++
25 lines
430 B
C++
/* Icinga 2 | (c) 2019 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef APPLY_UTILITY_H
|
|
#define APPLY_UTILITY_H
|
|
|
|
#include "base/debuginfo.hpp"
|
|
#include "base/string.hpp"
|
|
#include "config/expression.hpp"
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
namespace ApplyUtility
|
|
{
|
|
|
|
std::unique_ptr<Expression> MakeCommonZone(String parent_object_zone, String apply_rule_zone, const DebugInfo& debug_info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* APPLY_UTILITY_H */
|