icinga2/base/component.cpp

52 lines
885 B
C++
Raw Normal View History

#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.
*/
void Component::SetApplication(const Application::WeakPtr& application)
{
m_Application = application;
}
2012-04-24 14:02:15 +02:00
/**
* GetApplication
*
* Retrieves the application this component belongs to.
*
* @returns The application.
*/
Application::Ptr Component::GetApplication(void) const
{
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.
*/
ConfigObject::Ptr Component::GetConfig(void) const
2012-03-31 16:03:42 +02:00
{
return m_Config;
}