]> Creatis software - cpPlugins.git/blobdiff - lib/cpExtensions/Visualization/ImageActor.h
Moved to version 1.0
[cpPlugins.git] / lib / cpExtensions / Visualization / ImageActor.h
diff --git a/lib/cpExtensions/Visualization/ImageActor.h b/lib/cpExtensions/Visualization/ImageActor.h
deleted file mode 100644 (file)
index c62c132..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#ifndef __cpExtensions__Visualization__ImageActor__h__
-#define __cpExtensions__Visualization__ImageActor__h__
-
-#include <cpExtensions/Config.h>
-#include <vtkImageSlice.h>
-#include <vtkSmartPointer.h>
-
-// -------------------------------------------------------------------------
-class vtkImageAlgorithm;
-class vtkImageData;
-class vtkPlane;
-
-// -------------------------------------------------------------------------
-namespace cpExtensions
-{
-  namespace Visualization
-  {
-    class ImageSliceMapper;
-
-    /**
-     */
-    class cpExtensions_EXPORT ImageActor
-      : public vtkImageSlice
-    {
-    public:
-      typedef ImageActor Self;
-
-    public:
-      vtkTypeMacro( ImageActor, vtkImageSlice );
-
-    public:
-      virtual void Modified( ) cpExtensions_OVERRIDE;
-
-      int GetOrientation( ) const;
-      void SetOrientation( int orientation );
-
-      int GetSliceNumber( ) const;
-      void SetSliceNumber( int slice );
-
-      vtkPlane* GetSlicePlane( );
-      const vtkPlane* GetSlicePlane( ) const;
-
-    protected:
-      ImageActor( );
-      virtual ~ImageActor( );
-
-    private:
-      // Purposely not implemented
-      ImageActor( const Self& );
-      Self& operator=( const Self& );
-
-    protected:
-      vtkSmartPointer< ImageSliceMapper > m_Mapper;
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#endif // __cpExtensions__Visualization__ImageActor__h__
-
-// eof - $RCSfile$