]> Creatis software - cpMesh.git/blobdiff - lib/cpm/IO/MeshReader.h
QuadEdgeMesh ported to cpPlugins/Extensions
[cpMesh.git] / lib / cpm / IO / MeshReader.h
diff --git a/lib/cpm/IO/MeshReader.h b/lib/cpm/IO/MeshReader.h
deleted file mode 100644 (file)
index 2096ae3..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-#ifndef __CPM__IO__MESHREADER__H__
-#define __CPM__IO__MESHREADER__H__
-
-#include <string>
-#include <itkMeshSource.h>
-
-namespace cpm
-{
-  namespace IO
-  {
-    /**
-     */
-    template< typename M >
-    class MeshReader
-      : public itk::MeshSource< M >
-    {
-    public:
-      typedef MeshReader                      Self;
-      typedef itk::MeshSource< M >            Superclass;
-      typedef itk::SmartPointer< Self >       Pointer;
-      typedef itk::SmartPointer< const Self > ConstPointer;
-
-      typedef M MeshType;
-
-    public:
-      itkNewMacro( Self );
-      itkTypeMacro( MeshReader, itkMeshSource );
-
-      itkSetStringMacro( FileName );
-      itkGetStringMacro( FileName );
-
-    public:
-      virtual itk::ModifiedTimeType GetMTime( ) const;
-
-    protected:
-      MeshReader( );
-      virtual ~MeshReader( );
-
-      virtual void GenerateData( );
-
-      template< class R >
-      void _Read( );
-
-    private:
-      // Purposely not implemented
-      MeshReader( const Self& );
-      Self& operator=( const Self & );
-
-    protected:
-      typename Superclass::Pointer m_Reader;
-      std::string m_FileName;
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#include <cpm/IO/MeshReader.hxx>
-
-#endif // __CPM__IO__MESHREADER__H__
-
-// eof - $RCSfile$