// %pacpus:license{ // This file is part of the PACPUS framework distributed under the // CECILL-C License, Version 1.0. // %pacpus:license} #include "LMOComponent.h" #include #include using namespace pacpus; using namespace std; DECLARE_STATIC_LOGGER("pacpus.base.LMOComponent"); /// Constructs a static component factory static ComponentFactory sFactory("LMOComponent"); ////////////////////////////////////////////////////////////////////////// LMOComponent::LMOComponent(QString name) : ComponentBase(name) { LOG_TRACE("constructor(" << name << ")"); } ////////////////////////////////////////////////////////////////////////// LMOComponent::~LMOComponent() { LOG_TRACE("destructor"); } ////////////////////////////////////////////////////////////////////////// void LMOComponent::startActivity() { } ////////////////////////////////////////////////////////////////////////// void LMOComponent::stopActivity() { } ////////////////////////////////////////////////////////////////////////// ComponentBase::COMPONENT_CONFIGURATION LMOComponent::configureComponent(XmlComponentConfig config) { return ComponentBase::CONFIGURED_OK; }