]> granicus.if.org Git - icinga2/blob - lib/icinga/notificationresult.hpp
Merge pull request #7164 from Icinga/bugfix/notification-times-validate
[icinga2] / lib / icinga / notificationresult.hpp
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #ifndef NOTIFICATIONRESULT_H
4 #define NOTIFICATIONRESULT_H
5
6 #include "icinga/i2-icinga.hpp"
7 #include "icinga/notificationresult-ti.hpp"
8
9 namespace icinga
10 {
11
12 /**
13  * A notification result.
14  *
15  * @ingroup icinga
16  */
17 class NotificationResult final : public ObjectImpl<NotificationResult>
18 {
19 public:
20         DECLARE_OBJECT(NotificationResult);
21
22         double CalculateExecutionTime() const;
23 };
24
25 }
26
27 #endif /* NOTIFICATIONRESULT_H */