]> SALOME platform Git repositories - modules/visu.git/blob - src/CONVERTOR/VISU_ConvertorUtils.hxx
Salome HOME
sources v1.2c
[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
37 #include <vtkCellType.h>
38
39 #include <qstring.h>
40 #include <qfileinfo.h>
41
42 template<class T> std::string dtos(const std::string& fmt, T val){
43   static QString aString;
44   aString.sprintf(fmt.c_str(),val);
45   return aString.latin1();
46 }
47
48 extern "C"{
49   int getNbMedConnect(int theMedType, int theMedEntity, int theMeshDim);
50   int getNbMedNodes(int theMedType);
51   int med2vtkCellType(int theMedType);
52   int vtk2medCellType(int theVtkType);
53   int getIdMedType(int medType);
54 }
55
56 struct Med2vtk {
57   med_geometrie_element medType;
58   const char *medName;
59   int medNbNodes;
60   int vtkType;
61   const char *vtkName;
62   int vtkNbNodes;
63 };
64
65 extern Med2vtk med2vtk[MED_NBR_GEOMETRIE_MAILLE];
66
67 #endif