]> Creatis software - FrontAlgorithms.git/blobdiff - lib/fpa/IO/UniqueValuesContainerWriter.h
...
[FrontAlgorithms.git] / lib / fpa / IO / UniqueValuesContainerWriter.h
diff --git a/lib/fpa/IO/UniqueValuesContainerWriter.h b/lib/fpa/IO/UniqueValuesContainerWriter.h
deleted file mode 100644 (file)
index fc27012..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-#ifndef __FPA__IO__UNIQUEVALUESCONTAINERWRITER__H__
-#define __FPA__IO__UNIQUEVALUESCONTAINERWRITER__H__
-
-#include <string>
-#include <itkProcessObject.h>
-
-namespace fpa
-{
-  namespace IO
-  {
-    /**
-     */
-    template< class T >
-    class UniqueValuesContainerWriter
-      : public itk::ProcessObject
-    {
-    public:
-      typedef UniqueValuesContainerWriter       Self;
-      typedef itk::ProcessObject              Superclass;
-      typedef itk::SmartPointer< Self >       Pointer;
-      typedef itk::SmartPointer< const Self > ConstPointer;
-
-      typedef T TTree;
-
-    public:
-      itkNewMacro( Self );
-      itkTypeMacro( UniqueValuesContainerWriter, itkProcessObject );
-
-      itkGetConstMacro( FileName, std::string );
-      itkSetMacro( FileName, std::string );
-
-    public:
-      void SetInput( const T* input );
-      T* GetInput( );
-      const T* GetInput( ) const;
-      virtual void Update( );
-
-    protected:
-      UniqueValuesContainerWriter( );
-      virtual ~UniqueValuesContainerWriter( );
-
-      virtual void GenerateData( );
-
-    private:
-      // Purposely not implemented
-      UniqueValuesContainerWriter( const Self& other );
-      Self& operator=( const Self& other );
-
-    protected:
-      std::string m_FileName;
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#include <fpa/IO/UniqueValuesContainerWriter.hxx>
-
-#endif // __FPA__IO__UNIQUEVALUESCONTAINERWRITER__H__
-
-// eof - $RCSfile$