Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/med.git] / src / MEDMEM / duplicateMED.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 #include<string>
21
22 #include "MEDMEM_Exception.hxx"
23 #include "MEDMEM_Med.hxx"
24
25 using namespace std;
26 using namespace MEDMEM;
27 void usage(char * name)
28 {
29   cout << "  " << name << " <input med file> <output med file> " <<endl ;
30   cout << "    " << "(the two file name are mandatory)" << endl ;
31   exit(-1);
32 }
33
34 int main (int argc, char ** argv) {
35   if (argc != 3) usage(argv[0]);
36   
37   string filenameIN = argv[1] ;
38   string filenameOUT = argv[2] ;
39   
40   try {
41     
42     MED myMed(MED_DRIVER,filenameIN) ; // do readFilestruct !
43
44     // we read all meshes and fields in filenameIN
45     myMed.read() ;
46
47     // we write all in file filenameOUT :
48     int id = myMed.addDriver(MED_DRIVER,filenameOUT) ;
49     myMed.write(id);
50
51   } catch (MEDEXCEPTION& ex) {
52     MESSAGE(ex.what()) ;
53   }
54
55 }