]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/IO/MinimumSpanningTreeWriter.h
...
[FrontAlgorithms.git] / lib / fpa / IO / MinimumSpanningTreeWriter.h
index 3c3e9d1a9b8c6a2bea2cb3c80354277d8ca7e1b1..c3465fa70d534f35d41eb1ee08488464f785452e 100644 (file)
@@ -10,7 +10,7 @@ namespace fpa
   {
     /**
      */
-    template< class T >
+    template< class _TTree >
     class MinimumSpanningTreeWriter
       : 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,9 +30,9 @@ namespace fpa
       itkSetMacro( FileName, std::string );
 
     public:
-      void SetInput( const T* input );
-      T* GetInput( );
-      const T* GetInput( ) const;
+      void SetInput( const _TTree* input );
+      _TTree* GetInput( );
+      const _TTree* GetInput( ) const;
       virtual void Update( );
 
     protected:
@@ -54,7 +54,9 @@ namespace fpa
 
 } // ecapseman
 
+#ifndef ITK_MANUAL_INSTANTIATION
 #include <fpa/IO/MinimumSpanningTreeWriter.hxx>
+#endif // ITK_MANUAL_INSTANTIATION
 
 #endif // __FPA__IO__MINIMUMSPANNINGTREEWRITER__H__