Salome HOME
MEDMEM suppression
[modules/med.git] / src / MEDMEMBinTest / test_copie_mesh.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #include<string>
23
24 #include <math.h>
25 #include <stdlib.h>
26
27 #include "MEDMEM_Exception.hxx"
28 #include "MEDMEM_Mesh.hxx"
29 #include "MEDMEM_Family.hxx"
30 #include "MEDMEM_Group.hxx"
31
32 #include "MEDMEM_MedMeshDriver.hxx"
33 #include "MEDMEM_MedFieldDriver.hxx"
34 #include "MEDMEM_Support.hxx"
35 #include "MEDMEM_Field.hxx"
36 #include "MEDMEM_define.hxx"
37
38 using namespace std;
39 using namespace MEDMEM;
40
41 int main (int argc, char ** argv) {
42
43   if (argc <3) { // after 3, ignored !
44     cerr << "Usage : " << argv[0] 
45          << " filename meshname" << endl << endl;
46     exit(-1);
47   }
48
49   string filename = argv[1] ;
50   string meshname = argv[2] ;
51
52   MESH * myMesh= new MESH;
53   myMesh->setName(meshname);
54   MED_MESH_RDONLY_DRIVER myMeshDriver(filename,myMesh) ;
55   myMeshDriver.setMeshName(meshname);
56   myMeshDriver.open() ;
57   myMeshDriver.read() ;
58   myMeshDriver.close() ;
59
60   cout << * myMesh << endl;
61   MESH * myMesh2 = new MESH(* myMesh);
62   myMesh->removeReference();
63   cout << * myMesh2 << endl;
64   myMesh2->removeReference();
65
66   return 0;
67 }