]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Pipeline/Widget.cxx
Moved to version 1.0
[cpPlugins.git] / lib / cpPlugins / Pipeline / Widget.cxx
diff --git a/lib/cpPlugins/Pipeline/Widget.cxx b/lib/cpPlugins/Pipeline/Widget.cxx
deleted file mode 100644 (file)
index 482bed9..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#include <cpPlugins/Pipeline/Widget.h>
-
-// -------------------------------------------------------------------------
-void cpPlugins::Pipeline::Widget::
-AddInteractor( vtkRenderWindowInteractor* i )
-{
-  if( this->m_Interactors.insert( i ).second )
-    this->Modified( );
-}
-
-// -------------------------------------------------------------------------
-bool cpPlugins::Pipeline::Widget::
-IsInteractive( )
-{
-  return( true );
-}
-
-// -------------------------------------------------------------------------
-void cpPlugins::Pipeline::Widget::
-EnabledOn( )
-{
-  this->SetEnabled( true );
-}
-
-// -------------------------------------------------------------------------
-void cpPlugins::Pipeline::Widget::
-EnabledOff( )
-{
-  this->SetEnabled( false );
-}
-
-// -------------------------------------------------------------------------
-cpPlugins::Pipeline::Widget::
-Widget( )
-  : Superclass( )
-{
-  this->m_Parameters.ConfigureAsString( "Text", "" );
-}
-
-// -------------------------------------------------------------------------
-cpPlugins::Pipeline::Widget::
-~Widget( )
-{
-}
-
-// eof - $RCSfile$