]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/IO/MinimumSpanningTreeReader.h
...
[FrontAlgorithms.git] / lib / fpa / IO / MinimumSpanningTreeReader.h
index 40bf102887f15b108878e0930101b71ff52d1494..d0cbef368e15119c897d3713c4c231f11c6539f6 100644 (file)
@@ -10,7 +10,7 @@ namespace fpa
   {
     /**
      */
-    template< class T >
+    template< class _TTree >
     class MinimumSpanningTreeReader
       : public itk::ProcessObject
     {
@@ -20,7 +20,7 @@ namespace fpa
       typedef itk::SmartPointer< Self >       Pointer;
       typedef itk::SmartPointer< const Self > ConstPointer;
 
-      typedef T TTree;
+      typedef _TTree TTree;
 
     public:
       itkNewMacro( Self );
@@ -30,8 +30,7 @@ namespace fpa
       itkSetMacro( FileName, std::string );
 
     public:
-      T* GetOutput( );
-
+      _TTree* GetOutput( );
       virtual void Update( );
 
     protected:
@@ -53,7 +52,9 @@ namespace fpa
 
 } // ecapseman
 
+#ifndef ITK_MANUAL_INSTANTIATION
 #include <fpa/IO/MinimumSpanningTreeReader.hxx>
+#endif // ITK_MANUAL_INSTANTIATION
 
 #endif // __FPA__IO__MINIMUMSPANNINGTREEREADER__H__