diff options
Diffstat (limited to 'lib/base/function.ti')
-rw-r--r-- | lib/base/function.ti | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/base/function.ti b/lib/base/function.ti new file mode 100644 index 0000000..f2623c1 --- /dev/null +++ b/lib/base/function.ti @@ -0,0 +1,18 @@ +/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */ + +#include "base/configobject.hpp" + +library base; + +namespace icinga +{ + +abstract class Function +{ + [config] String "name"; + [config] bool side_effect_free; + [config] bool "deprecated"; + [config] Array::Ptr arguments; +}; + +} |