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