mirror of
https://github.com/Icinga/icinga2.git
synced 2026-02-20 16:31:46 -05:00
17 lines
305 B
Text
17 lines
305 B
Text
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class Command : DynamicObject
|
|
{
|
|
[config] Value command (CommandLine);
|
|
[config] Value timeout {
|
|
default {{{ return 300; }}}
|
|
};
|
|
[config] Dictionary::Ptr macros;
|
|
[config] Array::Ptr export_macros;
|
|
[config] Array::Ptr escape_macros;
|
|
};
|
|
|
|
}
|