]> Creatis software - cpPlugins.git/commitdiff
New plugins added
authorLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Mon, 15 Dec 2014 17:05:28 +0000 (18:05 +0100)
committerLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Mon, 15 Dec 2014 17:05:28 +0000 (18:05 +0100)
lib/cpPlugins/Interface/ImageToImageFilter.cxx [new file with mode: 0644]
lib/cpPlugins/Interface/ImageToImageFilter.h
lib/cpPlugins/Interface/ProcessObject.h

diff --git a/lib/cpPlugins/Interface/ImageToImageFilter.cxx b/lib/cpPlugins/Interface/ImageToImageFilter.cxx
new file mode 100644 (file)
index 0000000..34fffdc
--- /dev/null
@@ -0,0 +1,23 @@
+#include <cpPlugins/Interface/ImageToImageFilter.h>
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::ImageToImageFilter::
+ImageToImageFilter( )
+  : Superclass( )
+{
+}
+
+// -------------------------------------------------------------------------
+cpPlugins::Interface::ImageToImageFilter::
+~ImageToImageFilter( )
+{
+}
+
+// -------------------------------------------------------------------------
+std::string cpPlugins::Interface::ImageToImageFilter::
+GetClassName( ) const
+{
+  return( "cpPlugins::Interface::ImageToImageFilter" );
+}
+
+// eof - $RCSfile$
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..962ec27178cd1ae05527e4a223f324ecd1ac880a 100644 (file)
@@ -0,0 +1,36 @@
+#ifndef __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__
+#define __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__
+
+#include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
+#include <cpPlugins/Interface/ProcessObject.h>
+
+namespace cpPlugins
+{
+  namespace Interface
+  {
+    /**
+     */
+    class cpPlugins_Interface_EXPORT ImageToImageFilter
+      : public ProcessObject
+    {
+    public:
+      typedef ImageToImageFilter  Self;
+      typedef ProcessObject Superclass;
+
+      typedef Superclass::TParameter  TParameter;
+      typedef Superclass::TParameters TParameters;
+
+    public:
+      ImageToImageFilter( );
+      virtual ~ImageToImageFilter( );
+
+      virtual std::string GetClassName( ) const;
+    };
+
+  } // ecapseman
+
+} // ecapseman
+
+#endif // __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__
+
+// eof - $RCSfile$
index 44864926d572c2f52cfff8d6a16d030d085ff391..a5404a890e91962279d07dbd61be11108815e6e2 100644 (file)
@@ -4,6 +4,7 @@
 #include <map>
 #include <string>
 #include <itkDataObject.h>
+#include <itkProcessObject.h>
 #include <cpPlugins/Interface/cpPlugins_Interface_Export.h>
 #include <cpPlugins/Interface/Object.h>
 #include <cpPlugins/Interface/DataObject.h>