From: Leonardo Florez-Valencia Date: Mon, 15 Dec 2014 17:05:28 +0000 (+0100) Subject: New plugins added X-Git-Tag: v0.1~437 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=46b59f108abf7e97de551cc4500ec1c1e3e58a59;p=cpPlugins.git New plugins added --- diff --git a/lib/cpPlugins/Interface/ImageToImageFilter.cxx b/lib/cpPlugins/Interface/ImageToImageFilter.cxx new file mode 100644 index 0000000..34fffdc --- /dev/null +++ b/lib/cpPlugins/Interface/ImageToImageFilter.cxx @@ -0,0 +1,23 @@ +#include + +// ------------------------------------------------------------------------- +cpPlugins::Interface::ImageToImageFilter:: +ImageToImageFilter( ) + : Superclass( ) +{ +} + +// ------------------------------------------------------------------------- +cpPlugins::Interface::ImageToImageFilter:: +~ImageToImageFilter( ) +{ +} + +// ------------------------------------------------------------------------- +std::string cpPlugins::Interface::ImageToImageFilter:: +GetClassName( ) const +{ + return( "cpPlugins::Interface::ImageToImageFilter" ); +} + +// eof - $RCSfile$ diff --git a/lib/cpPlugins/Interface/ImageToImageFilter.h b/lib/cpPlugins/Interface/ImageToImageFilter.h index e69de29..962ec27 100644 --- a/lib/cpPlugins/Interface/ImageToImageFilter.h +++ b/lib/cpPlugins/Interface/ImageToImageFilter.h @@ -0,0 +1,36 @@ +#ifndef __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__ +#define __CPPLUGINS__INTERFACE__IMAGETOIMAGEFILTER__H__ + +#include +#include + +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$ diff --git a/lib/cpPlugins/Interface/ProcessObject.h b/lib/cpPlugins/Interface/ProcessObject.h index 4486492..a5404a8 100644 --- a/lib/cpPlugins/Interface/ProcessObject.h +++ b/lib/cpPlugins/Interface/ProcessObject.h @@ -4,6 +4,7 @@ #include #include #include +#include #include #include #include