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