icinga2/cib/host.h

28 lines
477 B
C
Raw Normal View History

#ifndef HOST_H
#define HOST_H
namespace icinga
{
2012-07-02 19:09:45 +02:00
class I2_CIB_API Host : public ConfigObjectAdapter
{
public:
Host(const ConfigObject::Ptr& configObject)
: ConfigObjectAdapter(configObject)
{ }
2012-06-30 13:39:55 +02:00
static bool Exists(const string& name);
static Host GetByName(const string& name);
2012-06-30 13:39:55 +02:00
string GetAlias(void) const;
Dictionary::Ptr GetGroups(void) const;
2012-07-09 12:44:31 +02:00
set<string> GetParents(void) const;
bool IsReachable(void) const;
bool IsUp(void) const;
};
}
#endif /* HOST_H */