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