X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FPlugins%2FIO%2FMeshWriter.cxx;h=94af3cca29c4e9be44fc7fd92cbde430bee96aa2;hb=7d66cc1aeec6d5bbcd4c963fe4115e4d64eaee67;hp=ade28b87e5b8b85e8d8952ac6e358443151a047d;hpb=94a44f4cdf4747eccc933df0a9c75ec86e825d2e;p=cpPlugins.git diff --git a/lib/cpPlugins/Plugins/IO/MeshWriter.cxx b/lib/cpPlugins/Plugins/IO/MeshWriter.cxx index ade28b8..94af3cc 100644 --- a/lib/cpPlugins/Plugins/IO/MeshWriter.cxx +++ b/lib/cpPlugins/Plugins/IO/MeshWriter.cxx @@ -8,24 +8,17 @@ // ------------------------------------------------------------------------- cpPlugins::IO::MeshWriter:: MeshWriter( ) - : Superclass( ), - m_Writer( NULL ) + : Superclass( ) { - this->m_ClassName = "cpPlugins::IO::MeshWriter"; - this->m_ClassCategory = "MeshWriter"; - this->SetNumberOfInputs( 1 ); + this->_AddInput( "Input" ); - using namespace cpPlugins::Interface; - this->m_DefaultParameters.Configure( Parameters::String, "FileName" ); - this->m_Parameters = this->m_DefaultParameters; + this->m_Parameters->ConfigureAsString( "FileName", "" ); } // ------------------------------------------------------------------------- cpPlugins::IO::MeshWriter:: ~MeshWriter( ) { - if( this->m_Writer != NULL ) - this->m_Writer->Delete( ); } // ------------------------------------------------------------------------- @@ -33,19 +26,15 @@ std::string cpPlugins::IO::MeshWriter:: _GenerateData( ) { cpPlugins::Interface::Mesh* mesh = - this->GetInput< cpPlugins::Interface::Mesh >( 0 ); + this->GetInput< cpPlugins::Interface::Mesh >( "Input" ); if( mesh == NULL ) return( "MeshWriter: No input mesh." ); - vtkPolyData* i = mesh->GetVTKMesh( ); + vtkPolyData* i = mesh->GetVTK< vtkPolyData >( ); if( i == NULL ) return( "MeshWriter: No suitable input." ); - std::string fname = this->m_Parameters.GetValueAsString( "FileName" ); + std::string fname = this->m_Parameters->GetString( "FileName" ); - if( this->m_Writer != NULL ) - this->m_Writer->Delete( ); - - vtkPolyDataWriter* pdw = vtkPolyDataWriter::New( ); - this->m_Writer = pdw; + vtkPolyDataWriter* pdw = this->_CreateVTK< vtkPolyDataWriter >( ); pdw->SetInputData( i ); pdw->SetFileName( fname.c_str( ) ); pdw->Update( );