X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=plugins%2FGenericPlugins%2FDataReproducer.cxx;fp=plugins%2FGenericPlugins%2FDataReproducer.cxx;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=586e37b6f671869fac6ab71dd0899a629921e128;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/plugins/GenericPlugins/DataReproducer.cxx b/plugins/GenericPlugins/DataReproducer.cxx deleted file mode 100644 index 586e37b..0000000 --- a/plugins/GenericPlugins/DataReproducer.cxx +++ /dev/null @@ -1,49 +0,0 @@ -#include "DataReproducer.h" -#include - -// ------------------------------------------------------------------------- -void cpPlugins_GenericPlugins::DataReproducer:: -AddInput( const std::string& n, cpPlugins::Pipeline::DataObject* o ) -{ - this->Superclass::AddInput( n, o ); - auto out = - dynamic_cast< cpPlugins::Pipeline::OutputPort* >( - this->m_Outputs.find( "Output" )->second - ); - out->Set( o ); -} - -// ------------------------------------------------------------------------- -void cpPlugins_GenericPlugins::DataReproducer:: -SetInput( const std::string& n, cpPlugins::Pipeline::DataObject* o ) -{ - this->Superclass::SetInput( n, o ); - auto out = - dynamic_cast< cpPlugins::Pipeline::OutputPort* >( - this->m_Outputs.find( "Output" )->second - ); - out->Set( o ); -} - -// ------------------------------------------------------------------------- -cpPlugins_GenericPlugins::DataReproducer:: -DataReproducer( ) - : Superclass( ) -{ - this->_ConfigureInput( "Input", true, false ); - this->_ConfigureOutput( "Output" ); -} - -// ------------------------------------------------------------------------- -cpPlugins_GenericPlugins::DataReproducer:: -~DataReproducer( ) -{ -} - -// ------------------------------------------------------------------------- -void cpPlugins_GenericPlugins::DataReproducer:: -_GenerateData( ) -{ -} - -// eof - $RCSfile$