mirror of https://github.com/Icinga/icinga2.git
24 lines
399 B
C++
24 lines
399 B
C++
#include "i2-cib.h"
|
|
|
|
using namespace icinga;
|
|
|
|
string ConfigObjectAdapter::GetType(void) const
|
|
{
|
|
return m_ConfigObject->GetType();
|
|
}
|
|
|
|
string ConfigObjectAdapter::GetName(void) const
|
|
{
|
|
return m_ConfigObject->GetName();
|
|
}
|
|
|
|
bool ConfigObjectAdapter::IsLocal(void) const
|
|
{
|
|
return m_ConfigObject->IsLocal();
|
|
}
|
|
|
|
ConfigObject::Ptr ConfigObjectAdapter::GetConfigObject() const
|
|
{
|
|
return m_ConfigObject;
|
|
}
|