Salome HOME
Adjust to CVS HEAD modifications
[modules/smesh.git] / src / DriverUNV / UNV_Test.cxx
1 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19
20 #include "UNV2411_Structure.hxx"
21 #include "UNV2412_Structure.hxx"
22 #include "UNV_Utilities.hxx"
23
24 #include "DriverUNV_R_SMDS_Mesh.h"
25 #include "DriverUNV_W_SMDS_Mesh.h"
26
27 using namespace std;
28
29 #ifdef DEBUG
30 static int MYDEBUG = 1;
31 #else
32 static int MYDEBUG = 0;
33 #endif
34
35
36 void ReadMed(const char* theFileName){
37   std::ifstream in_stream(theFileName);
38
39   UNV2411::TDataSet aDataSet2411;
40   UNV2411::Read(in_stream,aDataSet2411);
41
42   in_stream.seekg(0);
43   UNV2412::TDataSet aDataSet2412;
44   UNV2412::Read(in_stream,aDataSet2412);
45
46   string aFileName(theFileName);
47   aFileName += "-";
48   std::ofstream out_stream(aFileName.c_str());
49
50   UNV2411::Write(out_stream,aDataSet2411);
51   UNV2412::Write(out_stream,aDataSet2412);
52 }
53
54
55 int main(int argc, char** argv){ 
56   DriverUNV_R_SMDS_Mesh aR;
57   DriverUNV_W_SMDS_Mesh aW;
58   try{
59     if(argc > 1){
60       ReadMed(argv[1]);
61     }
62     return 0;
63   }catch(std::exception& exc){
64     MESSAGE("Follow exception was accured :\n"<<exc.what());
65   }catch(...){
66     MESSAGE("Unknown exception was accured !!!");
67   } 
68   return 1;
69 }