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