]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ImageToMeshFilter.h
More on parameters simplification
[cpPlugins.git] / lib / cpPlugins / Interface / ImageToMeshFilter.h
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..70dc9a207ae7768a4b45df0a32d09076af311673 100644 (file)
@@ -0,0 +1,45 @@
+#ifndef __CPPLUGINS__INTERFACE__IMAGETOMESHFILTER__H__
+#define __CPPLUGINS__INTERFACE__IMAGETOMESHFILTER__H__
+
+#include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
+#include <cpPlugins/Interface/FilterObject.h>
+
+namespace cpPlugins
+{
+  namespace Interface
+  {
+    /**
+     */
+    class cpPlugins_Interface_EXPORT ImageToMeshFilter
+      : public FilterObject
+    {
+    public:
+      typedef ImageToMeshFilter               Self;
+      typedef FilterObject                    Superclass;
+      typedef itk::SmartPointer< Self >       Pointer;
+      typedef itk::SmartPointer< const Self > ConstPointer;
+
+    public:
+      itkTypeMacro( ImageToMeshFilter, FilterObject );
+
+    public:
+      virtual std::string GetClassName( ) const;
+      virtual std::string GetClassType( ) const;
+
+    protected:
+      ImageToMeshFilter( );
+      virtual ~ImageToMeshFilter( );
+
+    private:
+      // Purposely not implemented
+      ImageToMeshFilter( const Self& );
+      Self& operator=( const Self& );
+    };
+
+  } // ecapseman
+
+} // ecapseman
+
+#endif // __CPPLUGINS__INTERFACE__IMAGETOMESHFILTER__H__
+
+// eof - $RCSfile$