]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Functors/Dijkstra/Image/Identity.h
...
[FrontAlgorithms.git] / lib / fpa / Functors / Dijkstra / Image / Identity.h
index f69948665413c0d1ae71106aab99fa801d0983b2..543a5eff56f42c778f492663a873c7d72865cfaa 100644 (file)
@@ -5,7 +5,7 @@
 #ifndef __fpa__Functors__Dijkstra__Image__Identity__h__
 #define __fpa__Functors__Dijkstra__Image__Identity__h__
 
-#include <fpa/Functors/BaseVertexFunction.h>
+#include <fpa/Functors/VertexFunction.h>
 
 namespace fpa
 {
@@ -19,13 +19,13 @@ namespace fpa
          */
         template< class _TImage, class _TValue >
         class Identity
-          : public fpa::Functors::BaseVertexFunction< typename _TImage::IndexType, _TValue >
+          : public fpa::Functors::VertexFunction< typename _TImage::IndexType, _TValue >
         {
         public:
           typedef _TImage TImage;
           typedef _TValue TValue;
           typedef typename TImage::IndexType TVertex;
-          typedef fpa::Functors::BaseVertexFunction< TVertex, TValue >  Superclass;
+          typedef fpa::Functors::VertexFunction< TVertex, TValue >  Superclass;
           typedef Identity                        Self;
           typedef itk::SmartPointer< Self >       Pointer;
           typedef itk::SmartPointer< const Self > ConstPointer;
@@ -34,7 +34,7 @@ namespace fpa
           itkNewMacro( Self );
           itkTypeMacro(
             fpa::Functors::Dijkstra::Image::Identity,
-            fpa::Functors::BaseVertexFunction
+            fpa::Functors::VertexFunction
             );
 
         public: