mirror of https://github.com/Icinga/icinga2.git
24 lines
384 B
C++
24 lines
384 B
C++
#ifndef HOST_H
|
|
#define HOST_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class I2_CIB_API Host : public ConfigObjectAdapter
|
|
{
|
|
public:
|
|
Host(const ConfigObject::Ptr& configObject)
|
|
: ConfigObjectAdapter(configObject)
|
|
{ }
|
|
|
|
static bool Exists(const string& name);
|
|
static Host GetByName(const string& name);
|
|
|
|
string GetAlias(void) const;
|
|
Dictionary::Ptr GetGroups(void) const;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* HOST_H */
|