#ifndef __CPPLUGINS__INTERFACE__MESH__H__ #define __CPPLUGINS__INTERFACE__MESH__H__ #include #include namespace cpPlugins { namespace Interface { /** */ class cpPlugins_Interface_EXPORT Mesh : public DataObject { public: typedef Mesh Self; typedef DataObject Superclass; typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; public: itkNewMacro( Self ); itkTypeMacro( Mesh, DataObject ); cpPlugins_Id_Macro( cpPlugins::Interface::Mesh, "DataObject" ); public: template< class M > inline void SetITK( itk::Object* object ); virtual void SetVTK( vtkObject* mesh ); protected: Mesh( ); virtual ~Mesh( ); private: // Purposely not implemented Mesh( const Self& ); Self& operator=( const Self& ); }; } // ecapseman } // ecapseman #include #endif // __CPPLUGINS__INTERFACE__MESH__H__ // eof - $RCSfile$