mirror of https://github.com/Icinga/icinga2.git
30 lines
463 B
C++
30 lines
463 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef OBJECTUTILS_H
|
|
#define OBJECTUTILS_H
|
|
|
|
#include "base/i2-base.hpp"
|
|
#include "base/string.hpp"
|
|
#include "base/array.hpp"
|
|
#include "icinga/service.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* @ingroup icinga
|
|
*/
|
|
class ObjectUtils
|
|
{
|
|
public:
|
|
static Service::Ptr GetService(const Value& host, const String& name);
|
|
static Array::Ptr GetServices(const Value& host);
|
|
|
|
private:
|
|
ObjectUtils();
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* OBJECTUTILS_H */
|