#ifndef __CPPLUGINS__INTERFACE__IMAGE__H__ #define __CPPLUGINS__INTERFACE__IMAGE__H__ #include #include #include class vtkImageData; // ------------------------------------------------------------------------- namespace cpPlugins { namespace Interface { /** */ class cpPlugins_Interface_EXPORT Image : public DataObject { public: typedef Image Self; typedef DataObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( Image, DataObject ); public: template< class I > inline void SetITKImage( itk::DataObject* object ); template< class I > inline I* GetITKImage( ); template< class I > inline const I* GetITKImage( ) const; virtual void SetVTKImageData( vtkImageData* image ); virtual vtkImageData* GetVTKImageData( ); virtual const vtkImageData* GetVTKImageData( ) const; protected: Image( ); virtual ~Image( ); template< class P, unsigned int D > inline void _ITK_2_VTK( itk::DataObject* object ); private: // Purposely not implemented Image( const Self& ); Self& operator=( const Self& ); protected: itk::ProcessObject::Pointer m_ITKvVTKConnection; }; } // ecapseman } // ecapseman #include #endif // __CPPLUGINS__INTERFACE__IMAGE__H__ // eof - $RCSfile$