icinga2/lib/icinga/notificationresult.hpp

28 lines
460 B
C++
Raw Normal View History

2019-03-28 11:47:47 +01:00
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2018-07-24 17:51:17 +02:00
#ifndef NOTIFICATIONRESULT_H
#define NOTIFICATIONRESULT_H
#include "icinga/i2-icinga.hpp"
#include "icinga/notificationresult-ti.hpp"
namespace icinga
{
/**
* A notification result.
*
* @ingroup icinga
*/
class NotificationResult final : public ObjectImpl<NotificationResult>
{
public:
DECLARE_OBJECT(NotificationResult);
double CalculateExecutionTime() const;
};
}
#endif /* NOTIFICATIONRESULT_H */