X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=lib%2FcpPlugins%2FInterface%2FDataObject.h;fp=lib%2FcpPlugins%2FInterface%2FDataObject.h;h=0000000000000000000000000000000000000000;hb=98390bcac544f7f3a6762ce812dda491213d6f13;hp=9293376a36bd39d246bb4b5812aee5a139df9ace;hpb=b6c7e73ebcce23619daced67f85d9e1364b33f30;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/DataObject.h b/lib/cpPlugins/Interface/DataObject.h deleted file mode 100644 index 9293376..0000000 --- a/lib/cpPlugins/Interface/DataObject.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef __CPPLUGINS__INTERFACE__DATAOBJECT__H__ -#define __CPPLUGINS__INTERFACE__DATAOBJECT__H__ - -#include - -namespace cpPlugins -{ - namespace Interface - { - // Some forward declarations - class ProcessObject; - - /** - */ - class cpPlugins_Interface_EXPORT DataObject - : public Object - { - 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, BasicObject ); - - public: - ProcessObject* GetSource( ); - const ProcessObject* GetSource( ) const; - void SetSource( ProcessObject* src ); - - void DisconnectFromPipeline( ); - - protected: - DataObject( ); - virtual ~DataObject( ); - - private: - // Purposely not implemented - DataObject( const Self& ); - Self& operator=( const Self& ); - - protected: - void* m_Source; - }; - - } // ecapseman - -} // ecapseman - -#endif // __CPPLUGINS__INTERFACE__DATAOBJECT__H__ - -// eof - $RCSfile$