]> granicus.if.org Git - icinga2/blob - lib/icinga/customvarobject.ti
Merge pull request #6727 from Icinga/feature/cluster-config-sync-stage
[icinga2] / lib / icinga / customvarobject.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "base/configobject.hpp"
4
5 library icinga;
6
7 namespace icinga
8 {
9
10 abstract class CustomVarObject : ConfigObject
11 {
12         [config] Dictionary::Ptr vars;
13 };
14
15 }