2014-05-25 16:23:35 +02:00
|
|
|
#include "base/application.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
|
|
|
class IcingaApplication : Application
|
|
|
|
{
|
|
|
|
[state, protected] Value override_enable_notifications;
|
|
|
|
[state, protected] Value override_enable_event_handlers;
|
|
|
|
[state, protected] Value override_enable_flapping;
|
2014-04-17 11:29:47 +02:00
|
|
|
[state, protected] Value override_enable_host_checks;
|
|
|
|
[state, protected] Value override_enable_service_checks;
|
2013-10-26 09:41:45 +02:00
|
|
|
[state, protected] Value override_enable_perfdata;
|
|
|
|
};
|
|
|
|
|
2014-04-08 09:11:54 +02:00
|
|
|
}
|