]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Mesh.h
Project cleanup towards version 0.1.0
[cpPlugins.git] / lib / cpPlugins / Interface / Mesh.h
diff --git a/lib/cpPlugins/Interface/Mesh.h b/lib/cpPlugins/Interface/Mesh.h
deleted file mode 100644 (file)
index 4d1f8fd..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#ifndef __CPPLUGINS__INTERFACE__MESH__H__
-#define __CPPLUGINS__INTERFACE__MESH__H__
-
-#include <cpPlugins/Interface/DataObject.h>
-
-// Some forward declarations
-class vtkObject;
-
-namespace cpPlugins
-{
-  namespace Interface
-  {
-    /**
-     */
-    class cpPlugins_Interface_EXPORT Mesh
-      : public DataObject
-    {
-    public:
-      typedef Mesh                            Self;
-      typedef DataObject                      Superclass;
-      typedef itk::SmartPointer< Self >       Pointer;
-      typedef itk::SmartPointer< const Self > ConstPointer;
-
-    public:
-      itkNewMacro( Self );
-      itkTypeMacro( Mesh, DataObject );
-      cpPlugins_Id_Macro( Mesh, DataObject );
-
-    public:
-      virtual void SetITK( itk::LightObject* o );
-      virtual void SetVTK( vtkObjectBase* o );
-
-    protected:
-      Mesh( );
-      virtual ~Mesh( );
-
-      template< class M >
-        inline void _ITK_2_VTK( itk::LightObject* o );
-
-    private:
-      // Purposely not implemented
-      Mesh( const Self& );
-      Self& operator=( const Self& );
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#include <cpPlugins/Interface/Mesh.hxx>
-
-#endif // __CPPLUGINS__INTERFACE__MESH__H__
-
-// eof - $RCSfile$