icinga2/lib/db_ido/hostdbobject.hpp

39 lines
744 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef HOSTDBOBJECT_H
#define HOSTDBOBJECT_H
2014-05-25 16:23:35 +02:00
#include "db_ido/dbobject.hpp"
#include "base/configobject.hpp"
namespace icinga
{
/**
* A Host database object.
*
* @ingroup ido
*/
2018-01-04 06:11:04 +01:00
class HostDbObject final : public DbObject
{
public:
DECLARE_PTR_TYPEDEFS(HostDbObject);
2013-08-01 13:20:30 +02:00
HostDbObject(const DbType::Ptr& type, const String& name1, const String& name2);
Dictionary::Ptr GetConfigFields() const override;
Dictionary::Ptr GetStatusFields() const override;
void OnConfigUpdateHeavy() override;
void OnConfigUpdateLight() override;
String CalculateConfigHash(const Dictionary::Ptr& configFields) const override;
private:
void DoCommonConfigUpdate();
};
}
#endif /* HOSTDBOBJECT_H */