]> granicus.if.org Git - icinga2/blobdiff - lib/icinga/notificationcommand.hpp
Service: be handled while host is down
[icinga2] / lib / icinga / notificationcommand.hpp
index 21cf6c3904f1beb29740702a7ca8d5bfc0862d23..210c91e86eed4362d626b584459e6e897233e636 100644 (file)
@@ -1,26 +1,9 @@
-/******************************************************************************
- * Icinga 2                                                                   *
- * Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/)  *
- *                                                                            *
- * This program is free software; you can redistribute it and/or              *
- * modify it under the terms of the GNU General Public License                *
- * as published by the Free Software Foundation; either version 2             *
- * of the License, or (at your option) any later version.                     *
- *                                                                            *
- * This program is distributed in the hope that it will be useful,            *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
- * GNU General Public License for more details.                               *
- *                                                                            *
- * You should have received a copy of the GNU General Public License          *
- * along with this program; if not, write to the Free Software Foundation     *
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
- ******************************************************************************/
+/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
 
 #ifndef NOTIFICATIONCOMMAND_H
 #define NOTIFICATIONCOMMAND_H
 
-#include "icinga/notificationcommand.thpp"
+#include "icinga/notificationcommand-ti.hpp"
 #include "icinga/notification.hpp"
 
 namespace icinga
@@ -33,7 +16,7 @@ class Notification;
  *
  * @ingroup icinga
  */
-class I2_ICINGA_API NotificationCommand : public ObjectImpl<NotificationCommand>
+class NotificationCommand final : public ObjectImpl<NotificationCommand>
 {
 public:
        DECLARE_OBJECT(NotificationCommand);
@@ -41,9 +24,9 @@ public:
 
        virtual Dictionary::Ptr Execute(const intrusive_ptr<Notification>& notification,
                const User::Ptr& user, const CheckResult::Ptr& cr, const NotificationType& type,
-           const String& author, const String& comment,
-           const Dictionary::Ptr& resolvedMacros = nullptr,
-           bool useResolvedMacros = false);
+               const String& author, const String& comment,
+               const Dictionary::Ptr& resolvedMacros = nullptr,
+               bool useResolvedMacros = false);
 };
 
 }