Salome HOME
Merge with OCC-V2_1_0_deb
[modules/visu.git] / src / CONVERTOR / VISU_ConvertorUtils.hxx
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : VISU_Convertor_impl.hxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #ifndef VISU_ConvertorUtils_HeaderFile
28 #define VISU_ConvertorUtils_HeaderFile
29
30 extern "C"{
31 #include <med.h>
32 }  
33
34 #include <fstream>      
35 #include <strstream>    
36 #include <string>
37
38 #include <vtkCellType.h>
39
40 #include <qstring.h>
41 #include <qfileinfo.h>
42
43 #ifndef MESSAGE
44 #define MESSAGE(msg) std::cout<<__FILE__<<"["<<__LINE__<<"]::"<<msg<<endl
45
46 #undef EXCEPT
47 #define EXCEPT(msg) QString(QString(__FILE__) + "[" + QString::number(__LINE__) + "]::" + msg)
48
49 #undef EXCEPTION
50 #define EXCEPTION(msg) EXCEPT(msg).latin1()
51
52 #endif
53
54 template<class T> std::string dtos(const std::string& fmt, T val){
55   static QString aString;
56   aString.sprintf(fmt.c_str(),val);
57   return aString.latin1();
58 }
59
60 extern "C"{
61   int getNbMedConnect(int theMedType, int theMedEntity, int theMeshDim);
62   int getNbMedNodes(int theMedType);
63   int med2vtkCellType(int theMedType);
64   int vtk2medCellType(int theVtkType);
65   int getIdMedType(int medType);
66 }
67
68 struct Med2vtk {
69   med_geometrie_element medType;
70   const char *medName;
71   int medNbNodes;
72   int vtkType;
73   const char *vtkName;
74   int vtkNbNodes;
75 };
76
77 extern Med2vtk med2vtk[MED_NBR_GEOMETRIE_MAILLE];
78
79 #endif