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