2012-03-31 09:18:09 -04:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2012-04-24 08:02:15 -04:00
|
|
|
/**
|
|
|
|
|
* SetApplication
|
|
|
|
|
*
|
|
|
|
|
* Sets the application this component belongs to.
|
|
|
|
|
*
|
|
|
|
|
* @param application The application.
|
|
|
|
|
*/
|
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-24 08:02:15 -04:00
|
|
|
/**
|
|
|
|
|
* GetApplication
|
|
|
|
|
*
|
|
|
|
|
* Retrieves the application this component belongs to.
|
|
|
|
|
*
|
|
|
|
|
* @returns The application.
|
|
|
|
|
*/
|
2012-04-19 05:29:36 -04:00
|
|
|
Application::Ptr Component::GetApplication(void) const
|
2012-03-31 09:18:09 -04:00
|
|
|
{
|
|
|
|
|
return m_Application.lock();
|
|
|
|
|
}
|
2012-03-31 10:03:42 -04:00
|
|
|
|
2012-04-24 08:02:15 -04:00
|
|
|
/**
|
|
|
|
|
* SetConfig
|
|
|
|
|
*
|
|
|
|
|
* Sets the configuration for this component.
|
|
|
|
|
*
|
|
|
|
|
* @param componentConfig The configuration.
|
|
|
|
|
*/
|
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-24 08:02:15 -04:00
|
|
|
/**
|
|
|
|
|
* GetConfig
|
|
|
|
|
*
|
|
|
|
|
* Retrieves the configuration for this component.
|
|
|
|
|
*
|
|
|
|
|
* @returns The configuration.
|
|
|
|
|
*/
|
2012-04-19 05:29:36 -04:00
|
|
|
ConfigObject::Ptr Component::GetConfig(void) const
|
2012-03-31 10:03:42 -04:00
|
|
|
{
|
|
|
|
|
return m_Config;
|
|
|
|
|
}
|