#ifndef __cpPlugins__DataObjects__PolyLineParametricPath__h__ #define __cpPlugins__DataObjects__PolyLineParametricPath__h__ #include #include #include // ------------------------------------------------------------------------- class vtkPolyDataAlgorithm; // ------------------------------------------------------------------------- namespace cpPlugins { namespace DataObjects { /** */ class cpPlugins_EXPORT PolyLineParametricPath : public cpPlugins::BaseObjects::DataObject { public: typedef PolyLineParametricPath Self; typedef cpPlugins::BaseObjects::DataObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( PolyLineParametricPath, cpPlugins::BaseObjects::DataObject ); cpPlugins_Id_Macro( PolyLineParametricPath, Object ); cpPlugins_Compatibility_Macro; public: virtual void SetITK( itk::LightObject* o ) cpPlugins_OVERRIDE; virtual void SetVTK( vtkObjectBase* o ) cpPlugins_OVERRIDE; protected: PolyLineParametricPath( ); virtual ~PolyLineParametricPath( ); template< class _TPolyLine > inline void _ITK_2_VTK( _TPolyLine* pl ); private: // Purposely not implemented PolyLineParametricPath( const Self& ); Self& operator=( const Self& ); protected: vtkSmartPointer< vtkPolyDataAlgorithm > m_ITKvVTK; }; } // ecapseman } // ecapseman #endif // __cpPlugins__DataObjects__PolyLineParametricPath__h__ // eof - $RCSfile$