]> granicus.if.org Git - icinga2/blob - lib/base/function.ti
Merge pull request #7185 from Icinga/bugfix/gelfwriter-wrong-log-facility
[icinga2] / lib / base / function.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/configobject.hpp"
4
5 library base;
6
7 namespace icinga
8 {
9
10 abstract class Function
11 {
12         [config] String "name";
13         [config] bool side_effect_free;
14         [config] bool "deprecated";
15         [config] Array::Ptr arguments;
16 };
17
18 }