#ifndef __CPPLUGINSIO__MESHREADER__H__ #define __CPPLUGINSIO__MESHREADER__H__ #include #include namespace cpPluginsIO { /** */ class cpPluginsIO_EXPORT MeshReader : public cpPlugins::ProcessObject { public: typedef MeshReader Self; typedef cpPlugins::ProcessObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( MeshReader, cpPlugins::ProcessObject ); cpPlugins_Id_Macro( MeshReader, IO ); protected: MeshReader( ); virtual ~MeshReader( ); virtual void _GenerateData( ) ITK_OVERRIDE; template< unsigned int _Dim > inline void _GD0( ); template< class _TScalar, unsigned int _Dim > inline void _GD1( ); private: // Purposely not implemented MeshReader( const Self& ); Self& operator=( const Self& ); }; } // ecapseman #endif // __CPPLUGINSIO__MESHREADER__H__ // eof - $RCSfile$