X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FSinkObject.h;h=644f26afc123c3f4704172513e8e352a40a7eebf;hb=2361f4f97631e09d88d8a5510a369817dcaa19db;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=8c23766af88a29c3e830299dffc4b95d9fe61df9;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/SinkObject.h b/lib/cpPlugins/Interface/SinkObject.h index e69de29..644f26a 100644 --- a/lib/cpPlugins/Interface/SinkObject.h +++ b/lib/cpPlugins/Interface/SinkObject.h @@ -0,0 +1,41 @@ +#ifndef __CPPLUGINS__INTERFACE__SINKOBJECT__H__ +#define __CPPLUGINS__INTERFACE__SINKOBJECT__H__ + +#include +#include + +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$