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