--- /dev/null
+#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$
+#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$
#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>