// %pacpus:license{ // This file is part of the PACPUS framework distributed under the // CECILL-C License, Version 1.0. // %pacpus:license} #include "@PACPUS_COMPONENT_NAME@.h" #include "@PACPUS_COMPONENT_NAME@Impl.h" #include //using namespace boost; using namespace pacpus; //using namespace std; DECLARE_STATIC_LOGGER("pacpus.@PACPUS_COMPONENT_NAME@.Impl"); ////////////////////////////////////////////////////////////////////////// @PACPUS_COMPONENT_NAME@::Impl::Impl(@PACPUS_COMPONENT_NAME@* parent) : mParent(parent) { } ////////////////////////////////////////////////////////////////////////// void @PACPUS_COMPONENT_NAME@::Impl::start() { } void @PACPUS_COMPONENT_NAME@::Impl::stop() { } ////////////////////////////////////////////////////////////////////////// //void @PACPUS_COMPONENT_NAME@::Impl::outputData() //{ // OutputType data = generateData(); // checkedSend(mDataOutput, data); //} ////////////////////////////////////////////////////////////////////////// //void @PACPUS_COMPONENT_NAME@::Impl::processInput(InputType const& input) //{ //}