blob: 3d5908a29ff58fb68763b58290e9efaf69284196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
library base;
namespace icinga
{
abstract class Application : ConfigObject
{
};
}
|