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