icinga2/lib/icinga/eventcommand.hpp

31 lines
557 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef EVENTCOMMAND_H
#define EVENTCOMMAND_H
2018-01-18 13:50:38 +01:00
#include "icinga/eventcommand-ti.hpp"
2014-05-25 16:23:35 +02:00
#include "icinga/checkable.hpp"
namespace icinga
{
/**
* An event handler command.
*
2013-08-20 08:29:38 +02:00
* @ingroup icinga
*/
2018-01-04 06:11:04 +01:00
class EventCommand final : public ObjectImpl<EventCommand>
{
public:
2014-11-03 00:44:04 +01:00
DECLARE_OBJECT(EventCommand);
DECLARE_OBJECTNAME(EventCommand);
virtual void Execute(const Checkable::Ptr& checkable,
const Dictionary::Ptr& resolvedMacros = nullptr,
bool useResolvedMacros = false);
};
}
#endif /* EVENTCOMMAND_H */