1 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
18 // See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
20 #include "UNV2411_Structure.hxx"
21 #include "UNV2412_Structure.hxx"
22 #include "UNV_Utilities.hxx"
24 #include "DriverUNV_R_SMDS_Mesh.h"
25 #include "DriverUNV_W_SMDS_Mesh.h"
30 static int MYDEBUG = 1;
32 static int MYDEBUG = 0;
36 void ReadMed(const char* theFileName){
37 std::ifstream in_stream(theFileName);
39 UNV2411::TDataSet aDataSet2411;
40 UNV2411::Read(in_stream,aDataSet2411);
43 UNV2412::TDataSet aDataSet2412;
44 UNV2412::Read(in_stream,aDataSet2412);
46 string aFileName(theFileName);
48 std::ofstream out_stream(aFileName.c_str());
50 UNV2411::Write(out_stream,aDataSet2411);
51 UNV2412::Write(out_stream,aDataSet2412);
55 int main(int argc, char** argv){
56 DriverUNV_R_SMDS_Mesh aR;
57 DriverUNV_W_SMDS_Mesh aW;
63 }catch(std::exception& exc){
64 MESSAGE("Follow exception was accured :\n"<<exc.what());
66 MESSAGE("Unknown exception was accured !!!");