icinga2/lib/db_ido/hostgroupdbobject.hpp

35 lines
690 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-07-31 03:20:06 -04:00
#ifndef HOSTGROUPDBOBJECT_H
#define HOSTGROUPDBOBJECT_H
2014-05-25 10:23:35 -04:00
#include "db_ido/dbobject.hpp"
#include "icinga/hostgroup.hpp"
#include "base/configobject.hpp"
2013-07-31 03:20:06 -04:00
namespace icinga
{
/**
* A HostGroup database object.
*
* @ingroup ido
*/
2018-01-04 00:11:04 -05:00
class HostGroupDbObject final : public DbObject
2013-07-31 03:20:06 -04:00
{
public:
DECLARE_PTR_TYPEDEFS(HostGroupDbObject);
2013-07-31 03:20:06 -04:00
2013-08-01 07:20:30 -04:00
HostGroupDbObject(const DbType::Ptr& type, const String& name1, const String& name2);
2013-07-31 03:20:06 -04:00
Dictionary::Ptr GetConfigFields() const override;
Dictionary::Ptr GetStatusFields() const override;
private:
2013-08-05 09:57:40 -04:00
static void MembersChangedHandler(const HostGroup::Ptr& hgfilter);
2013-07-31 03:20:06 -04:00
};
}
#endif /* HOSTGROUPDBOBJECT_H */