summaryrefslogtreecommitdiffstats
path: root/lib/base/function.ti
blob: f2623c168e4593cdb1228fd23948a290731c807d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
};

}