]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/Base/SingleSeedInterface.h
...
[FrontAlgorithms.git] / lib / fpa / Base / SingleSeedInterface.h
index 807d8d0552cb557818446b85d7941be37fad782e..02950325cbf0cac1200211ba1e9f3b3a8f8b0e94 100644 (file)
@@ -24,53 +24,10 @@ namespace fpa
       typedef _TTraits            TTraits;
       fpa_Base_TraitTypes( typename TTraits );
 
-      /* TODO
-         typedef _TVertex       TVertex;
-         typedef _TPoint        TPoint;
-         typedef _TInputValue   TInputValue;
-         typedef _TOutputValue  TOutputValue;
-         typedef _TFrontId      TFrontId;
-         typedef _TCompare      TCompare;
-         typedef SeedsInterface Self;
-
-         struct TSeed
-         {
-         TVertex Vertex;
-         TPoint  Point;
-         bool    IsPoint;
-         bool    IsUnified;
-         TFrontId FrontId;
-         TSeed( )
-         : IsUnified( false ),
-         FrontId( TFrontId( 0 ) )
-         { }
-         };
-         typedef std::vector< TSeed > TSeeds;
-
-         struct TNode
-         {
-         TVertex  Vertex;
-         TVertex  Parent;
-         TFrontId FrontId;
-
-         // Hack to hide the fact that seed values need to be initialized
-         mutable TOutputValue Value;
-         };
-         struct TNodeCompare
-         {
-         bool operator()( const TNode& a, const TNode& b ) const
-         {
-         TCompare cmp;
-         return( cmp( a.Vertex, b.Vertex ) );
-         }
-         };
-         typedef std::set< TNode, TNodeCompare > TNodes;
-      */
-
     private:
       itkConceptMacro(
         Check_TFrontId,
-        ( itk::Concept::IsUnsignedInteger< _TFrontId > )
+        ( itk::Concept::IsUnsignedInteger< TFrontId > )
         );
 
     public: