mirror of https://github.com/Icinga/icinga2.git
17 lines
429 B
Plaintext
17 lines
429 B
Plaintext
#include "base/application.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class IcingaApplication : Application
|
|
{
|
|
[state, protected] Value override_enable_notifications;
|
|
[state, protected] Value override_enable_event_handlers;
|
|
[state, protected] Value override_enable_flapping;
|
|
[state, protected] Value override_enable_host_checks;
|
|
[state, protected] Value override_enable_service_checks;
|
|
[state, protected] Value override_enable_perfdata;
|
|
};
|
|
|
|
}
|