2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-11-05 10:29:02 +01:00
|
|
|
|
|
|
|
#ifndef OBJECTTYPE_H
|
|
|
|
#define OBJECTTYPE_H
|
|
|
|
|
|
|
|
#include "base/i2-base.hpp"
|
|
|
|
#include "base/type.hpp"
|
|
|
|
#include "base/initialize.hpp"
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2018-01-04 06:11:04 +01:00
|
|
|
class ObjectType final : public Type
|
2015-11-05 10:29:02 +01:00
|
|
|
{
|
|
|
|
public:
|
2018-01-04 05:12:56 +01:00
|
|
|
String GetName() const override;
|
|
|
|
Type::Ptr GetBaseType() const override;
|
|
|
|
int GetAttributes() const override;
|
|
|
|
int GetFieldId(const String& name) const override;
|
|
|
|
Field GetFieldInfo(int id) const override;
|
|
|
|
int GetFieldCount() const override;
|
2015-11-05 10:29:02 +01:00
|
|
|
|
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
ObjectFactory GetFactory() const override;
|
2015-11-05 10:29:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* OBJECTTYPE_H */
|