X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FPipeline%2FDataObject.h;fp=lib%2FcpPlugins%2FPipeline%2FDataObject.h;h=0000000000000000000000000000000000000000;hb=2e142df11d6f312a2a2b5097b8da73571ed523e8;hp=04623cfade1323dee2d4d998c45689373b5e7a85;hpb=61b3659afe961ed248f30e26f9ca8f28fcfafddc;p=cpPlugins.git diff --git a/lib/cpPlugins/Pipeline/DataObject.h b/lib/cpPlugins/Pipeline/DataObject.h deleted file mode 100644 index 04623cf..0000000 --- a/lib/cpPlugins/Pipeline/DataObject.h +++ /dev/null @@ -1,62 +0,0 @@ -#ifndef __cpPlugins__Pipeline__DataObject__h__ -#define __cpPlugins__Pipeline__DataObject__h__ - -#include - -namespace cpPlugins -{ - namespace Pipeline - { - // Some forward declarations - class ProcessObject; - - /** - */ - class cpPlugins_EXPORT DataObject - : public Object - { - friend class ProcessObject; - - public: - typedef DataObject Self; - typedef Object Superclass; - typedef itk::SmartPointer< Self > Pointer; - typedef itk::SmartPointer< const Self > ConstPointer; - - public: - itkNewMacro( Self ); - itkTypeMacro( DataObject, Object ); - cpPlugins_Id_Macro( DataObject, Object ); - - public: - virtual bool IsCompatible( const Self* other ) const; - - ProcessObject* GetSource( ); - const ProcessObject* GetSource( ) const; - void SetSource( ProcessObject* src ); - - void DisconnectFromPipeline( ); - - protected: - DataObject( ); - virtual ~DataObject( ); - - template< class _TType > - inline bool _DisconnectVTK( ); - - private: - // Purposely not implemented - DataObject( const Self& ); - Self& operator=( const Self& ); - - protected: - ProcessObject* m_Source; - }; - - } // ecapseman - -} // ecapseman - -#endif // __cpPlugins__Pipeline__DataObject__h__ - -// eof - $RCSfile$