]> Creatis software - cpPlugins.git/blobdiff - plugins/GenericFilters/DataReproducer.cxx
...
[cpPlugins.git] / plugins / GenericFilters / DataReproducer.cxx
diff --git a/plugins/GenericFilters/DataReproducer.cxx b/plugins/GenericFilters/DataReproducer.cxx
deleted file mode 100644 (file)
index 11988f2..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#include <GenericFilters/DataReproducer.h>
-#include <cpPlugins/BaseObjects/DataObject.h>
-
-// -------------------------------------------------------------------------
-void cpPluginsGenericFilters::DataReproducer::
-AddInput( const std::string& n, cpPlugins::BaseObjects::DataObject* o )
-{
-  this->Superclass::AddInput( n, o );
-  auto out =
-    dynamic_cast< cpPlugins::BaseObjects::OutputPort* >(
-      this->m_Outputs.find( "Output" )->second
-      );
-  out->Set( o );
-}
-
-// -------------------------------------------------------------------------
-void cpPluginsGenericFilters::DataReproducer::
-SetInput( const std::string& n, cpPlugins::BaseObjects::DataObject* o )
-{
-  this->Superclass::SetInput( n, o );
-  auto out =
-    dynamic_cast< cpPlugins::BaseObjects::OutputPort* >(
-      this->m_Outputs.find( "Output" )->second
-      );
-  out->Set( o );
-}
-
-// -------------------------------------------------------------------------
-cpPluginsGenericFilters::DataReproducer::
-DataReproducer( )
-  : Superclass( )
-{
-  this->_ConfigureInput( "Input", true, false );
-  this->_ConfigureOutput( "Output" );
-}
-
-// -------------------------------------------------------------------------
-cpPluginsGenericFilters::DataReproducer::
-~DataReproducer( )
-{
-}
-
-// -------------------------------------------------------------------------
-void cpPluginsGenericFilters::DataReproducer::
-_GenerateData( )
-{
-}
-
-// eof - $RCSfile$