X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FDriverMED%2FDriverMED_W_SMESHDS_Document.cxx;h=5bc9968f9c54b1c37a4356ecd63f184e449d7b52;hp=be8b84a2b7a199b8d97279952eed12421945c408;hb=aa67cc96d730566d202d1014d97b7f0b3a4d71f4;hpb=4791f5b30ea7a9c1247aa551750dc71cb83b99aa diff --git a/src/DriverMED/DriverMED_W_SMESHDS_Document.cxx b/src/DriverMED/DriverMED_W_SMESHDS_Document.cxx index be8b84a2b..5bc9968f9 100644 --- a/src/DriverMED/DriverMED_W_SMESHDS_Document.cxx +++ b/src/DriverMED/DriverMED_W_SMESHDS_Document.cxx @@ -1,100 +1,27 @@ -// SMESH DriverMED : driver to read and write 'med' files +// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// -// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. // +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. // +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// + +// SMESH DriverMED : driver to read and write 'med' files // File : DriverMED_W_SMESHDS_Document.cxx // Module : SMESH - -using namespace std; +// #include "DriverMED_W_SMESHDS_Document.h" -#include "DriverMED_W_SMESHDS_Mesh.h" -#include "utilities.h" - -#include - -extern "C" -{ - Document_Writer* Wmaker() { - return new DriverMED_W_SMESHDS_Document; - } -} - -DriverMED_W_SMESHDS_Document::DriverMED_W_SMESHDS_Document() { -; -} - -DriverMED_W_SMESHDS_Document::~DriverMED_W_SMESHDS_Document() { -; -} - -//void DriverMED_W_SMESHDS_Document::SetFile(string aFile) { -//myFile = aFile; -//} - -//void DriverMED_W_SMESHDS_Document::SetDocument(Handle(SMESHDS_Document)& aDocument) { -//myDocument = aDocument; -//} - -void DriverMED_W_SMESHDS_Document::Write() { - - med_err ret = 0; - med_idt fid; - med_int nmaa,numero,nb_of_meshes; - med_mode_switch mode_coo; - med_connectivite typ_con; - - SCRUTE(myFile); - Handle(SMESHDS_Mesh) myMesh; - - /******** Nombre de maillages ********/ - nb_of_meshes = myDocument->NbMeshes(); //voir avec Yves - MESSAGE("nb_of_meshes = "<GetMesh(numero); - - myDocument->InitMeshesIterator(); - if (nb_of_meshes!=0) - for (;myDocument->MoreMesh();myDocument->NextMesh()) { - numero++; - myMesh = myDocument->CurrentMesh(); - - DriverMED_W_SMESHDS_Mesh* myWriter = new DriverMED_W_SMESHDS_Mesh; - - myWriter->SetMesh(myMesh); - myWriter->SetFile(myFile); - //myWriter->SetFileId(fid); - myWriter->SetMeshId(numero); - - //myWriter->Write(); - myWriter->Add(); - } - - -}