mirror of https://github.com/Icinga/icinga2.git
35 lines
690 B
C++
35 lines
690 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef HOSTGROUPDBOBJECT_H
|
|
#define HOSTGROUPDBOBJECT_H
|
|
|
|
#include "db_ido/dbobject.hpp"
|
|
#include "icinga/hostgroup.hpp"
|
|
#include "base/configobject.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* A HostGroup database object.
|
|
*
|
|
* @ingroup ido
|
|
*/
|
|
class HostGroupDbObject final : public DbObject
|
|
{
|
|
public:
|
|
DECLARE_PTR_TYPEDEFS(HostGroupDbObject);
|
|
|
|
HostGroupDbObject(const DbType::Ptr& type, const String& name1, const String& name2);
|
|
|
|
Dictionary::Ptr GetConfigFields() const override;
|
|
Dictionary::Ptr GetStatusFields() const override;
|
|
|
|
private:
|
|
static void MembersChangedHandler(const HostGroup::Ptr& hgfilter);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* HOSTGROUPDBOBJECT_H */
|