mirror of https://github.com/Icinga/icinga2.git
15 lines
232 B
C
15 lines
232 B
C
|
#ifndef MACROPROCESSOR_H
|
||
|
#define MACROPROCESSOR_H
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class I2_ICINGA_API MacroProcessor
|
||
|
{
|
||
|
public:
|
||
|
static string ResolveMacros(const string& str, const Dictionary::Ptr& macros);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* MACROPROCESSOR_H */
|