]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Plugins/BasicFilters/BinaryThresholdImageFilter.h
Project cleanup towards version 0.1.0
[cpPlugins.git] / lib / cpPlugins / Plugins / BasicFilters / BinaryThresholdImageFilter.h
diff --git a/lib/cpPlugins/Plugins/BasicFilters/BinaryThresholdImageFilter.h b/lib/cpPlugins/Plugins/BasicFilters/BinaryThresholdImageFilter.h
deleted file mode 100644 (file)
index 76b725b..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-#ifndef __CPPLUGINS__PLUGINS__BINARYTHRESHOLDIMAGEFILTER__H__
-#define __CPPLUGINS__PLUGINS__BINARYTHRESHOLDIMAGEFILTER__H__
-
-#include <cpPlugins/BasicFilters/cpPluginsBasicFilters_Export.h>
-#include <cpPlugins/Interface/BaseProcessObjects.h>
-
-namespace cpPlugins
-{
-  namespace BasicFilters
-  {
-    /**
-     */
-    class cpPluginsBasicFilters_EXPORT BinaryThresholdImageFilter
-      : public cpPlugins::Interface::ImageToImageFilter
-    {
-    public:
-      typedef BinaryThresholdImageFilter               Self;
-      typedef cpPlugins::Interface::ImageToImageFilter Superclass;
-      typedef itk::SmartPointer< Self >                Pointer;
-      typedef itk::SmartPointer< const Self >          ConstPointer;
-
-    public:
-      itkNewMacro( Self );
-      itkTypeMacro(
-        BinaryThresholdImageFilter,
-        cpPluginsInterfaceImageToImageFilter
-        );
-      cpPlugins_Id_Macro(
-        cpPlugins::BasicFilters::BinaryThresholdImageFilter,
-        ImageToBinaryImageFilter
-        );
-
-    protected:
-      BinaryThresholdImageFilter( );
-      virtual ~BinaryThresholdImageFilter( );
-
-      virtual std::string _GenerateData( );
-
-      template< class I >
-        inline std::string _GD0( itk::DataObject* image );
-
-      template< class I, class O >
-        inline std::string _RealGD( itk::DataObject* image );
-
-    private:
-      // Purposely not implemented
-      BinaryThresholdImageFilter( const Self& );
-      Self& operator=( const Self& );
-    };
-
-  } // ecapseman
-
-} // ecapseman
-
-#endif // __CPPLUGINS__PLUGINS__BINARYTHRESHOLDIMAGEFILTER__H__
-
-// eof - $RCSfile$