#include #include // ------------------------------------------------------------------------- void cpPlugins::Interface::Mesh:: SetVTK( vtkObject* mesh ) { if( dynamic_cast< vtkPolyData* >( mesh ) != NULL ) this->m_VTKObject = mesh; else this->m_VTKObject = NULL; this->Modified( ); } // ------------------------------------------------------------------------- cpPlugins::Interface::Mesh:: Mesh( ) : Superclass( ) { } // ------------------------------------------------------------------------- cpPlugins::Interface::Mesh:: ~Mesh( ) { } // eof - $RCSfile$