#ifndef __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATH__H__ #define __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATH__H__ #include #include #include #include #include #include #include namespace cpPlugins { namespace Interface { /** */ class cpPlugins_Interface_EXPORT PolyLineParametricPath : public DataObject { public: typedef PolyLineParametricPath Self; typedef DataObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( PolyLineParametricPath, DataObject ); public: virtual std::string GetClassName( ) const; virtual void SetRealDataObject( itk::DataObject* dobj, itk::DataObject* ref_image = NULL ); protected: PolyLineParametricPath( ); virtual ~PolyLineParametricPath( ); template< unsigned int D > void _VTK( itk::DataObject* ref_image ); private: // Purposely not implemented PolyLineParametricPath( const Self& ); Self& operator=( const Self& ); protected: vtkSmartPointer< vtkPolyData > m_PolyData; }; } // ecapseman } // ecapseman #endif // __CPPLUGINS__INTERFACE__POLYLINEPARAMETRICPATH__H__ // eof - $RCSfile$