icinga2/lib/config/objectrule.hpp
Michael Friedrich d14a88235d Replace Copyright header with a short version, part I
CLion -> replace in path
2019-02-25 14:48:22 +01:00

34 lines
507 B
C++

/* 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 */