]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/FilterObject.h
...
[cpPlugins.git] / lib / cpPlugins / Interface / FilterObject.h
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..61d2ec4d7b9058f5dbf784ccc95c9c059045a76c 100644 (file)
@@ -0,0 +1,41 @@
+#ifndef __CPPLUGINS__INTERFACE__FILTEROBJECT__H__
+#define __CPPLUGINS__INTERFACE__FILTEROBJECT__H__
+
+#include <cpPlugins/cpPlugins_Export.h>
+#include <cpPlugins/Interface/ProcessObject.h>
+
+namespace cpPlugins
+{
+  namespace Interface
+  {
+    /**
+     */
+    class cpPlugins_EXPORT FilterObject
+      : public ProcessObject
+    {
+    public:
+      typedef FilterObject                    Self;
+      typedef ProcessObject                   Superclass;
+      typedef itk::SmartPointer< Self >       Pointer;
+      typedef itk::SmartPointer< const Self > ConstPointer;
+
+    public:
+      itkTypeMacro( FilterObject, ProcessObject );
+
+    protected:
+      FilterObject( );
+      virtual ~FilterObject( );
+
+    private:
+      // Purposely not implemented
+      FilterObject( const Self& );
+      Self& operator=( const Self& );
+    };
+
+  } // ecapseman
+
+} // ecapseman
+
+#endif // __CPPLUGINS__INTERFACE__FILTEROBJECT__H__
+
+// eof - $RCSfile$