1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef OBJECTRULE_H
#define OBJECTRULE_H
#include "config/i2-config.hpp"
#include "config/expression.hpp"
#include "base/debuginfo.hpp"
#include <set>
namespace icinga
{
/**
* @ingroup config
*/
class ObjectRule
{
public:
typedef std::set<String> TypeSet;
static void RegisterType(const String& sourceType);
static bool IsValidSourceType(const String& sourceType);
private:
ObjectRule();
static TypeSet m_Types;
};
}
#endif /* OBJECTRULE_H */
|