X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2Ffpa%2FImage%2FFunctors%2FDijkstra%2FFunction.h;fp=lib%2Ffpa%2FImage%2FFunctors%2FDijkstra%2FFunction.h;h=0000000000000000000000000000000000000000;hb=3c639e5da479c7216a0a302ffa156ac6762caeed;hp=e9fa0b2f7c92543b20d0a716e3442d223f3d23a9;hpb=5bf766068f54d061d3816f4950a076c3cf3a4d8b;p=FrontAlgorithms.git diff --git a/lib/fpa/Image/Functors/Dijkstra/Function.h b/lib/fpa/Image/Functors/Dijkstra/Function.h deleted file mode 100644 index e9fa0b2..0000000 --- a/lib/fpa/Image/Functors/Dijkstra/Function.h +++ /dev/null @@ -1,69 +0,0 @@ -// ========================================================================= -// @author Leonardo Florez Valencia -// @email florez-l@javeriana.edu.co -// ========================================================================= - -#ifndef __fpa__Image__Functors__Dijkstra__Function__h__ -#define __fpa__Image__Functors__Dijkstra__Function__h__ - -#include - -namespace fpa -{ - namespace Image - { - namespace Functors - { - namespace Dijkstra - { - /** - */ - template< class _TInputImage, class _TOutputValue > - class Function - : public fpa::Base::Functors::Dijkstra::Function< typename _TInputImage::IndexType, _TOutputValue > - { - public: - typedef typename _TInputImage::IndexType TVertex; - typedef Function Self; - typedef fpa::Base::Functors::Dijkstra::Function< TVertex, _TOutputValue > Superclass; - typedef itk::SmartPointer< Self > Pointer; - typedef itk::SmartPointer< const Self > ConstPointer; - - public: - itkTypeMacro( - fpa::Image::Functors::Dijkstra::Function, - fpa::Base::Functors::Dijkstra::Function - ); - - itkGetConstObjectMacro( Image, _TInputImage ); - itkSetConstObjectMacro( Image, _TInputImage ); - - protected: - Function( ) - : Superclass( ) - { - } - virtual ~Function( ) - { - } - - private: - // Purposely not implemented - Function( const Self& other ); - Self& operator=( const Self& other ); - - protected: - typename _TInputImage::ConstPointer m_Image; - }; - - } // ecapseman - - } // ecapseman - - } // ecapseman - -} // ecapseman - -#endif // __fpa__Image__Functors__Dijkstra__Function__h__ - -// eof - $RCSfile$