Salome HOME
Update copyright
[modules/smesh.git] / src / DriverMED / DriverMED_W_SMESHDS_Document.cxx
index e04bac2185397f93ac069be6a2a077d1abde28cb..9c14bf710d65aa1aa18d2600185b45303be524ba 100644 (file)
-//  SMESH DriverMED : driver to read and write 'med' files
+// Copyright (C) 2007-2011  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
+//
+// 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.
 //
-//  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 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 <stdio.h>
-
-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);
-       SMESHDS_Mesh * myMesh;
-
-  /******** Nombre de maillages ********/
-       nb_of_meshes = myDocument->NbMeshes();  //voir avec Yves
-       MESSAGE("nb_of_meshes = " << nb_of_meshes << "\n");
-       SCRUTE(nb_of_meshes);
-       //nb_of_meshes = 1;
-       numero = 0;
-
-       string myClass = string("SMESHDS_Mesh");
-       string myExtension = string("MED");
-
-       //while (numero<nb_of_meshes) {
-       //numero++;
-       //myMesh = myDocument->GetMesh(numero);
-
-       myDocument->InitMeshesIterator();
-       if (nb_of_meshes != 0)
-               while(myDocument->MoreMesh())
-               {
-                       numero++;
-                       myMesh = myDocument->NextMesh();
-
-                       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();
-               }
-}