X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FPolyLineParametricPathToPolyDataFilter.h;fp=lib%2Ffpa%2FImage%2FPolyLineParametricPathToPolyDataFilter.h;h=0000000000000000000000000000000000000000;hb=3c639e5da479c7216a0a302ffa156ac6762caeed;hp=4c6318a6e5019ef2f9e89e3cf5d1fedf8370e28a;hpb=5bf766068f54d061d3816f4950a076c3cf3a4d8b;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/PolyLineParametricPathToPolyDataFilter.h b/lib/fpa/Image/PolyLineParametricPathToPolyDataFilter.h deleted file mode 100644 index 4c6318a..0000000 --- a/lib/fpa/Image/PolyLineParametricPathToPolyDataFilter.h +++ /dev/null @@ -1,81 +0,0 @@ -// ========================================================================= -// @author Leonardo Florez Valencia -// @email florez-l@javeriana.edu.co -// ========================================================================= - -#ifndef __fpa__Image__PolyLineParametricPathToPolyDataFilter__h__ -#define __fpa__Image__PolyLineParametricPathToPolyDataFilter__h__ - -#include - -#ifdef USE_VTK -# include -#endif // USE_VTK - -namespace fpa -{ - namespace Image - { - /** - */ - template< class _TPolyLineParametricPath > - class PolyLineParametricPathToPolyDataFilter -#ifdef USE_VTK - : public vtkPolyDataAlgorithm -#endif // USE_VTK - { - public: - typedef PolyLineParametricPathToPolyDataFilter Self; - typedef _TPolyLineParametricPath TPolyLineParametricPath; - - public: -#ifdef USE_VTK - vtkTypeMacro( - PolyLineParametricPathToPolyDataFilter, - vtkPolyDataAlgorithm - ); -#endif // USE_VTK - - public: - static Self* New( ); - - const TPolyLineParametricPath* GetInput( ) const; - void SetInput( const TPolyLineParametricPath* path ); - - protected: - PolyLineParametricPathToPolyDataFilter( ); - virtual ~PolyLineParametricPathToPolyDataFilter( ); - -#ifdef USE_VTK - int RequestData( - vtkInformation* information, - vtkInformationVector** input, - vtkInformationVector* output - ); - int RequestInformation( - vtkInformation* information, - vtkInformationVector** input, - vtkInformationVector* output - ); -#endif // USE_VTK - - private: - // Purposely not implemented - PolyLineParametricPathToPolyDataFilter( const Self& ); - void operator=( const Self& ); - - protected: - const TPolyLineParametricPath* m_PolyLineParametricPath; - }; - - } // ecapseman - -} // ecapseman - -#ifndef ITK_MANUAL_INSTANTIATION -# include -#endif // ITK_MANUAL_INSTANTIATION - -#endif // __fpa__Image__PolyLineParametricPathToPolyDataFilter__h__ - -// eof - $RCSfile$