icinga2/base/component.cpp

24 lines
407 B
C++
Raw Normal View History

#include "i2-base.h"
using namespace icinga;
void Component::SetApplication(const Application::WeakPtr& application)
{
m_Application = application;
}
Application::Ptr Component::GetApplication(void)
{
return m_Application.lock();
}
2012-03-31 16:03:42 +02:00
2012-04-03 11:39:26 +02:00
void Component::SetConfig(const ConfigObject::Ptr& componentConfig)
2012-03-31 16:03:42 +02:00
{
m_Config = componentConfig;
}
ConfigObject::Ptr Component::GetConfig(void)
2012-03-31 16:03:42 +02:00
{
return m_Config;
}