]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Image/Functors/Dijkstra/Function.h
...
[FrontAlgorithms.git] / lib / fpa / Image / Functors / Dijkstra / Function.h
diff --git a/lib/fpa/Image/Functors/Dijkstra/Function.h b/lib/fpa/Image/Functors/Dijkstra/Function.h
deleted file mode 100644 (file)
index e9fa0b2..0000000
+++ /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 <fpa/Base/Functors/Dijkstra/Function.h>
-
-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$